-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "template-node",
"description": "A template for esm Node.js projects using typescript",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"author": "Mike Valeriano <mkvlrn@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:mkvlrn/template-node"
},
"keywords": [
"node",
"typescript",
"esm",
"template"
],
"engines": {
"node": "24",
"pnpm": "10"
},
"imports": {
"#/*": "./src/*.ts"
},
"scripts": {
"dev": "node --watch ./src/main.ts",
"start": "node ./src/main.ts",
"lint": "pnpm lint-check --write",
"lint-check": "biome check --diagnostic-level=warn --no-errors-on-unmatched",
"typecheck": "tsc",
"typecheck-staged": "tsc-files",
"test": "vitest",
"test-staged": "vitest related --bail=1 --reporter=github-actions",
"test-ci": "vitest --bail=1 --reporter=github-actions",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@mkvlrn/config": "^4.0.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"lefthook": "^2.1.6",
"tsc-files": "^1.1.4",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}