-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"private": true,
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "pnpm -r --stream --filter=@tomjs/* build",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"packages/**/*.{js,cjs,ts}\" *.cjs --fix --cache",
"lint:prettier": "prettier --write \"packages/**/*.{cjs,ts,json,md}\" *.{cjs,json,md}",
"prepare": "husky",
"postinstall": "pnpm -r --stream --filter=@tomjs/commitlint --filter=@tomjs/eslint --filter=@tomjs/prettier build"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@tomjs/commitlint": "workspace:^",
"@tomjs/eslint": "workspace:^",
"@tomjs/prettier": "workspace:^",
"@tomjs/tsconfig": "workspace:^",
"@types/node": "^18.19.67",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"typescript": "^5.4.5",
"vite": "^4.5.3",
"vite-plugin-build": "^0.10.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.4.0"
}