-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "starter-node",
"type": "module",
"version": "0.9.0",
"packageManager": "pnpm@10.27.0",
"description": "A Node.js package starter template.",
"author": "mys1024",
"license": "MIT",
"homepage": "https://github.com/mys1024/starter-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/mys1024/starter-node.git"
},
"keywords": [
"template"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"starter-node": "dist/cli/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"prepare": "simple-git-hooks",
"cli": "tsx src/cli/index.ts",
"cli:watch": "tsx watch src/cli/index.ts",
"build": "unbuild",
"test": "vitest run",
"test:watch": "vitest watch",
"test:cover": "vitest run --coverage",
"check": "run-p check:*",
"check:type": "tsc --noEmit",
"check:lint": "eslint .",
"check:format": "prettier --check .",
"taze": "taze -I",
"release": "bumpp"
},
"dependencies": {
"commander": "^14.0.2",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"bump": "^0.2.5",
"bumpp": "^10.3.2",
"changelogithub": "^14.0.0",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"simple-git-hooks": "^2.13.1",
"taze": "^19.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"unbuild": "^3.6.1",
"vitest": "^4.0.16"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm test && pnpm check:type && pnpm lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix .",
"prettier --write ."
]
}
}