-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 KB
/
package.json
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
{
"name": "@initx/monorepo",
"type": "module",
"version": "0.0.18",
"private": true,
"packageManager": "[email protected]",
"description": "A more convenient scripting engine",
"license": "MIT",
"homepage": "https://github.com/initx-collective/initx#readme",
"repository": {
"type": "git",
"url": "[email protected]: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 --flag unstable_ts_config",
"release": "bumpp -r",
"initx": "node ./packages/cli/bin/initx.mjs",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@imba97/eslint-config": "^0.0.4",
"@types/node": "^22.8.6",
"bumpp": "^9.8.0",
"defu": "^6.1.4",
"eslint": "^9.13.0",
"eslint-plugin-unused-imports": "^4.1.4",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "5.5.4",
"unbuild": "^2.0.0",
"vitest": "^2.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --flag unstable_ts_config --fix"
}
}