-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "scripting-cli",
"version": "1.3.0",
"description": "This plugin integrates the desktop editor synchronization feature of the Scripting app.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"scripting-cli": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npx tsc && chmod +x dist/cli.js",
"start": "node dist/cli.js",
"dev": "ts-node src/cli.ts",
"help": "node dist/cli.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",
"jiti": "^2.7.0",
"prompts": "^2.4.2",
"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/prompts": "^2.4.9",
"@types/qrcode-terminal": "^0.12.2",
"@types/socket.io": "^3.0.2",
"@types/yargs": "^17.0.33",
"ts-node": "^10.9.2"
}
}