-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "config-packs",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@10.11.0",
"description": "Template repo for `config-rocket` ecosystem config pack creators.",
"author": "NamesMT <dangquoctrung123@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/namesmt/config-packs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/namesmt/config-packs.git"
},
"bugs": "https://github.com/namesmt/config-packs/issues",
"engines": {
"node": ">=20.13.1"
},
"scripts": {
"dev": "tsx --watch src/dev.ts",
"bundle": "tsx src/bundle.ts",
"lint": "eslint .",
"test:types": "tsc --noEmit",
"release": "pnpm dlx changelogen@latest --release --push --publish",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.2",
"@namesmt/utils": "^0.5.13",
"@parcel/watcher": "^2.5.1",
"@types/node": "^22.15.21",
"config-rocket": "^0.6.2",
"consola": "^3.4.2",
"eslint": "^9.27.0",
"kontroll": "^1.0.5",
"lint-staged": "^16.0.0",
"pathe": "^2.0.3",
"simple-git-hooks": "^2.13.0",
"std-env": "^3.9.0",
"tinyglobby": "^0.2.13",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"simple-git-hooks",
"unrs-resolver"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}