-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 885 Bytes
/
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
{
"name": "vscode-messenger",
"private": true,
"engineStrict": true,
"engines": {
"npm": "^7.7.0"
},
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rimraf \"packages/**/lib\" \"packages/**/*.tsbuildinfo\"",
"build": "tsc -b tsconfig.build.json && npm run browserify --workspaces --if-present",
"watch": "tsc -b tsconfig.build.json -w",
"test": "jest",
"lint": "npm run lint --workspaces"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^15.14.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"eslint": "^8.11.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4"
},
"workspaces": [
"packages/vscode-messenger-common",
"packages/vscode-messenger-webview",
"packages/vscode-messenger",
"examples/*"
]
}