-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
37 lines (37 loc) · 912 Bytes
/
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
{
"name": "charger-simulator",
"version": "1.0.3",
"main": "dist/index.js",
"bin": {
"charger-simulator": "cli-index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node src/chargerSimulatorCli.ts",
"prepublishOnly": "tsc",
"build": "tsc",
"docs": "typedoc --out docs ./src"
},
"license": "MIT",
"devDependencies": {
"@types/node": "16",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": "https://github.com/vasyas/charger-simulator.git",
"author": "Vasyl Stashuk <vasyl@stashuk.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@push-rpc/core": "^1.8.3",
"@push-rpc/websocket": "^1.8.3",
"@types/ws": "^8.5.10",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"strong-soap": "1.21.0",
"ws": "^8.16.0",
"xml2js": "^0.4.23"
}
}