-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@vnerve/neuronwire",
"version": "0.0.2-1",
"description": "This is vNerve's JavaScript SDK, NeuronWire.",
"main": "dist/index.js",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production webpack && tsc",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:protobuf": "node scripts/proto-compile.js",
"build:doc": "typedoc",
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"start:doc": "nodemon --watch ./src -e ts --exec typedoc",
"lint": "eslint --ext .ts ./src"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vNerve/NeuronWire.git"
},
"keywords": [
"vNerve",
"NeuronWire",
"vbox.moe",
"vtbs"
],
"author": "ssysm",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/vNerve/NeuronWire/issues"
},
"homepage": "https://github.com/vNerve/NeuronWire#readme",
"devDependencies": {
"@types/websocket": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.6.0",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^8.0.0",
"typedoc": "^0.17.8",
"typedoc-plugin-localization": "^2.2.1",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@stomp/stompjs": "^5.4.4",
"protobufjs": "^6.9.0",
"websocket": "^1.0.31"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}