-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
48
49
50
{
"name": "scripting-cli",
"version": "1.2.4",
"description": "This plugin integrates the desktop editor synchronization feature of the Scripting app.",
"main": "dist/index.js",
"bin": {
"scripting-cli": "dist/index.js"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"help": "node dist/index.js --help",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Scripting app",
"Scripting app cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thomfang/scripting-cli.git"
},
"author": "tilfon@live.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomfang/scripting-cli/issues"
},
"dependencies": {
"bonjour": "^3.5.0",
"chalk": "^4.1.2",
"chokidar": "^4.0.3",
"express": "^4.21.2",
"ip": "^2.0.1",
"qrcode-terminal": "^0.12.0",
"socket.io": "^4.8.1",
"typescript": "^5.7.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bonjour": "^3.5.13",
"@types/express": "^5.0.0",
"@types/ip": "^1.1.3",
"@types/node": "^22.13.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/socket.io": "^3.0.2",
"@types/yargs": "^17.0.33",
"ts-node": "^10.9.2"
}
}