-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "rempl-cli",
"version": "1.2.3",
"description": "Command line app to launch rempl server instance",
"author": "Roman Dvornov",
"license": "MIT",
"repository": "rempl/rempl-cli",
"keywords": [
"rempl",
"server",
"cli"
],
"type": "module",
"bin": {
"rempl": "./bin/rempl.js"
},
"scripts": {
"lint": "eslint scripts/*.cjs src && npm run ts-check",
"ts-check": "tsc --noEmit",
"build": "node scripts/transpile.cjs",
"watch": "node scripts/transpile.cjs --watch",
"start": "node ./bin/rempl"
},
"dependencies": {
"clap": "~3.1.1",
"express": "^4.18.2",
"pem": "^1.14.8",
"socket.io": "^2.5.0",
"socket.io-client": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.2",
"@types/pem": "^1.14.4",
"@types/socket.io": "^2.1.13",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"esbuild": "^0.19.6",
"eslint": "^8.54.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"rollup": "^4.5.0",
"sucrase": "^3.34.0",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin",
"lib",
"static"
]
}