-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "dnmp",
"type": "module",
"version": "0.0.0-alpha.0.5",
"packageManager": "pnpm@10.15.1",
"description": "Interactive CLI that bumps your version numbers and more",
"author": "lonewolfyx <olddrivero.king@qq.com>",
"license": "MIT",
"homepage": "https://github.com/lonewolfyx/dnmp",
"bugs": {
"url": "https://github.com/lonewolfyx/dnmp/issues"
},
"keywords": [],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"dnmp": "./bin/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "pnpm build",
"prepare": "simple-git-hooks"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"boxen": "^8.0.1",
"c12": "^3.3.3",
"cac": "^6.7.14",
"defu": "^6.1.4",
"find-up": "^8.0.0",
"glob": "^13.0.0",
"jiti": "^2.6.1",
"semver": "^7.7.3",
"tinyexec": "^1.0.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@lonewolfyx/tsconfig": "^0.0.6",
"@types/node": "^25.0.3",
"@types/semver": "^7.7.1",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"picocolors": "^1.1.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.18.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}