-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 862 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 862 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "web-terminal",
"version": "1.0.0",
"description": "web based terminal",
"bin": "index.js",
"main": "index.js",
"scripts": {
"test": "nodemon download.js",
"dev": "nodemon index.js",
"start": "node index.js",
"build": "pkg .",
"test:spawn": "node test/spawn.test.js"
},
"keywords": [
"terminal",
"web",
"control",
"pc",
"lan"
],
"author": "ayham",
"license": "MIT",
"dependencies": {
"base64-arraybuffer": "^1.0.2",
"express": "^4.18.2",
"ip": "^1.1.8",
"node-fetch": "^2.6.7",
"request": "^2.88.2",
"socket.io": "^4.5.3"
},
"pkg": {
"assets": [
"./node_modules/**/*",
"./view/**/*",
"./public/**/*"
],
"targets": [
"node14-win-x64"
],
"outputPath": "dist"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}