-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "pkg-placeholder",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.28.2",
"description": "_description_",
"author": "lonewolfyx <olddrivero.king@qq.com>",
"license": "MIT",
"homepage": "https://github.com/lonewolfyx/pkg-placeholder",
"bugs": {
"url": "https://github.com/lonewolfyx/pkg-placeholder/issues"
},
"keywords": [],
"exports": {
".": "./dist/cli.mjs",
"./package.json": "./package.json"
},
"main": "./dist/cli.mjs",
"module": "./dist/cli.mjs",
"types": "./dist/cli.d.mts",
"bin": {
"pkg-placeholder": "./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": "^1.0.0",
"cac": "^6.7.14",
"defu": "^6.1.4",
"find-up": "^8.0.0",
"glob": "^13.0.1",
"jiti": "^2.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.3.0",
"@lonewolfyx/tsconfig": "^0.0.6",
"@types/node": "^25.2.1",
"eslint": "^10.0.0",
"lint-staged": "^16.2.7",
"picocolors": "^1.1.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.20.3",
"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"
}
}