forked from TypeFox/vscode-ws-jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "vscode-ws-jsonrpc-webgal",
"version": "0.2.1",
"description": "VSCode JSON RPC over WebSocket",
"author": "TypeFox GmbH (http://www.typefox.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TypeFox/vscode-ws-jsonrpc.git"
},
"bugs": {
"url": "https://github.com/TypeFox/vscode-ws-jsonrpc/issues"
},
"main": "./build/cjs/index.js",
"module": "./build/index.js",
"typings": "./build/index",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitest/coverage-c8": "^0.29.2",
"eslint": "^8.13.0",
"eslint-config-alloy": "^4.5.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"rollup": "^3.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3",
"vitest": "^0.29.2"
},
"dependencies": {
"vscode-jsonrpc": "^5.0.0"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "tsc",
"watch": "tsc -w",
"clean": "rimraf lib",
"build": "rollup --config rollup.config.template.mjs"
}
}