-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "@initx/monorepo",
"type": "module",
"version": "0.1.4",
"private": true,
"packageManager": "pnpm@10.26.1",
"description": "A more convenient scripting engine",
"license": "MIT",
"homepage": "https://github.com/initx-collective/initx#readme",
"repository": {
"type": "git",
"url": "git@github.com:initx-collective/initx.git"
},
"bugs": {
"url": "https://github.com/initx-collective/initx/issues"
},
"scripts": {
"stub": "pnpm -r --filter=./packages/** run stub",
"build": "pnpm -r --filter=./packages/** run build",
"test": "vitest",
"tu": "vitest -u",
"lint": "eslint --cache",
"release": "bumpp -r",
"initx": "node ./packages/cli/bin/initx.mjs",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@imba97/eslint-config": "^0.0.6",
"@types/node": "^25.0.3",
"bumpp": "^10.3.2",
"defu": "^6.1.4",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.16"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --fix"
}
}