-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.4 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
{
"name": "vscode-messenger",
"private": true,
"engineStrict": true,
"engines": {
"npm": "^10.8.0"
},
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rimraf \"packages/**/lib\" \"packages/**/build\" \"packages/**/*.tsbuildinfo\" \"packages/*/node_modules\"",
"build": "tsc -b tsconfig.build.json && npm run browserify --workspaces --if-present && npm run build --workspace=packages/vscode-messenger-devtools/webview-ui && npm run lint",
"watch": "tsc -b tsconfig.build.json -w",
"test": "jest",
"lint": "npm run lint --workspaces",
"prepare-next": "npm run prepare:next --if-present --workspaces",
"publish-next": "npm publish --tag next --access public --workspaces",
"publish-latest": "npm run prepare && npm publish --tag latest --access public --workspaces"
},
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"typescript": "^5.7.2",
"eslint": "^9.17.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^28.0.0",
"ts-jest": "^28.0.0",
"rimraf": "^3.0.2"
},
"workspaces": [
"packages/vscode-messenger-common",
"packages/vscode-messenger-webview",
"packages/vscode-messenger",
"packages/vscode-messenger-devtools",
"packages/vscode-messenger-devtools/webview-ui",
"examples/*"
]
}