forked from SAP/vscode-webview-rpc-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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": "@sap-devx/webview-rpc",
"version": "0.1.2",
"description": "An RPC library for VSCode WebViews",
"scripts": {
"compile": "npm run compile-ext && npm run compile-browser && npm run compile-test",
"watch": "npm run watch-ext && npm run watch-test",
"watch-ext": "tsc -w -p ./tsconfig.ext.json",
"watch-test": "tsc -w -p ./tsconfig.test.json",
"compile-ext": "rimraf ./out.ext && tsc -p ./tsconfig.ext.json",
"compile-browser": "rimraf ./out.browser && tsc -p tsconfig.browser.json",
"compile-test": "rimraf ./out.test && tsc -p tsconfig.test.json",
"watch-browser": "tsc -w -p ./tsconfig.browser.json",
"lint": "eslint ./**/*.ts",
"test": "jest .out.test/test/"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP/vscode-webview-rpc-lib"
},
"publisher": "SAP",
"author": "Ido Perez",
"license": "Apache 2.0",
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"@types/ws": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.3"
},
"dependencies": {
"ws": "^7.1.2"
}
}