-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "@tomjs/vscode",
"version": "0.0.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r --stream --filter=@tomjs/* build",
"cli:dev": "pnpm -r --stream --filter \"./packages/vscode-dev\" dev",
"i18n:dev": "pnpm -r --stream --filter \"./examples/vscode-i18n\" dev",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"{packages,examples}/**/*.{js,cjs,ts}\" *.{js,cjs,mjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky",
"bootstrap": "pnpm -r --stream --filter=@tomjs/* build"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@tomjs/commitlint": "^3.3.0",
"@tomjs/eslint": "^3.2.0",
"@tomjs/prettier": "^1.4.1",
"@tomjs/tsconfig": "^1.6.0",
"@types/node": "^18.19.34",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"tsx": "^4.15.2",
"type-fest": "^4.20.0",
"typescript": "~5.4.5"
}
}