-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.4 KB
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": "vscode-messenger",
"private": true,
"engineStrict": true,
"engines": {
"npm": "^10.8.0"
},
"scripts": {
"clean": "rimraf \"packages/**/lib\" \"packages/**/build\" \"packages/**/*.tsbuildinfo\" \"examples/**/out\" \"examples/**/*.tsbuildinfo\" \"examples/**/media/web-view-bundle*.js\"",
"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 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",
"eslint": "^9.17.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^28.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typescript": "^5.7.2"
},
"workspaces": [
"packages/vscode-messenger-common",
"packages/vscode-messenger-webview",
"packages/vscode-messenger",
"packages/vscode-messenger-devtools",
"packages/vscode-messenger-devtools/webview-ui",
"examples/*"
]
}