-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
{
"author": "kslimani",
"name": "rjc",
"version": "0.7.3",
"description": "Yet another remote Javascript console.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kslimani/rjc.git"
},
"homepage": "https://github.com/kslimani/rjc",
"keywords": [
"console",
"remote"
],
"bin": {
"rjc": "./bin/index.js"
},
"main": "./src/index.js",
"scripts": {
"dev": "webpack --progress --watch --mode production",
"dist": "npm run lint && webpack --progress --mode production",
"lint": "eslint src",
"start": "./bin/index.js --nocache"
},
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"flatted": "^3.3.1",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"babel-loader": "^9.1.3",
"eslint": "^9.6.0",
"globals": "^15.6.0",
"socket.io-client": "^4.7.5",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}