-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@hyperse/vscode-extension-starter",
"displayName": "vscode-extension-starter",
"version": "0.0.2",
"description": "",
"categories": [
"Other"
],
"keywords": [
"hyperse",
"typescript",
"vscode",
"vscode extension",
"inversify"
],
"type": "module",
"main": "./dist/extension.js",
"workspaces": [
"packages/*"
],
"scripts": {
"g:clean": "yarn clean:global-cache && yarn workspaces foreach -At run clean",
"g:build": "yarn workspaces foreach -At run build",
"g:build-release": "yarn workspaces foreach -At run build-release",
"g:test": "yarn workspaces foreach -At run test",
"g:test-unit": "yarn workspaces foreach -At run test-unit",
"g:test-e2e": "yarn workspaces foreach -At run test-e2e",
"g:lint": "yarn workspaces foreach -At run lint --color",
"g:typecheck": "yarn workspaces foreach -At run typecheck",
"g:fix-all-files": "yarn workspaces foreach -At run fix-all-files",
"g:lint-staged-files": "lint-staged --allow-empty",
"g:changeset": "changeset",
"g:version": "changeset version",
"g:release": "yarn g:build-release && changeset publish",
"g:cz": "cz",
"package": "node scripts/build.js",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@hyperse/eslint-config-hyperse": "1.1.3",
"@types/fs-extra": "^11",
"@types/mocha": "^10.0.7",
"@types/node": "22.x",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.23.1",
"eslint": "^9.x",
"eslint-plugin-json": "^4.0.1",
"fs-extra": "^11.2.0",
"husky": "9.1.5",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]"
}