forked from kieler/klighd-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@kieler/klighd-cli",
"version": "0.2.1",
"description": "Standalone web view for klighd-core diagrams",
"author": "Kiel University <[email protected]>",
"license": "EPL-2.0",
"keywords": [
"sprotty",
"klighd",
"diagram",
"standalone"
],
"main": "./lib/server.js",
"bin": "./lib/klighd.js",
"files": [
"lib",
"dist"
],
"scripts": {
"clean": "rm -rf lib dist bin",
"lint": "eslint .",
"build": "run-p --print-label \"build:*\"",
"build:app": "webpack --mode production --devtool hidden-source-map",
"build:server": "tsc -p ./tsconfig.server.json",
"watch": "run-p --print-label \"watch:*\"",
"watch:app": "webpack --watch",
"watch:server": "tsc -w -p ./tsconfig.server.json",
"prepackage": "echo 'exports.VERSION = \"'\"$npm_package_version\"'\";' > ./lib/version.js",
"package": "pkg -c pkg.json ./lib/klighd.js",
"start": "node ./lib/main.js",
"socket": "node ./lib/main.js --ls_port=5007"
},
"dependencies": {
"@kieler/klighd-core": "^0.2.1",
"commander": "^8.1.0",
"fastify": "^3.15.0",
"fastify-static": "^4.0.1",
"fastify-websocket": "^3.1.0",
"get-port": "^5.1.1",
"open": "^7.4.2",
"pino-pretty": "^4.7.1",
"reflect-metadata": "^0.1.13",
"vscode-languageserver-protocol": "^3.16.0",
"vscode-ws-jsonrpc": "^0.2.0"
},
"devDependencies": {
"@types/ws": "^7.4.4",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.4",
"html-webpack-plugin": "4",
"mini-css-extract-plugin": "^1.6.0",
"npm-run-all": "^4.1.5",
"pkg": "^5.1.0",
"ts-loader": "^8.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^4.7.2"
}
}