-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 743 Bytes
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
{
"name": "remotecmd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run build && npm run start",
"build": "rollup --config rollup.config.js",
"start": "node ./index.js"
},
"author": "BlackFire",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/ws": "^6.0.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
}
}