This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@pklaschka/xd-deploy",
"version": "0.12.0",
"description": "A toolbelt for easy and quick, iterative plugin development for Adobe XD allowing quick deployment to multiple test machines, making testing your plugin super easy.",
"main": "index.js",
"bin": {
"xd-deploy": "index.js"
},
"scripts": {
"test": "echo \"no test specified\" && exit 0",
"prepublish": "npm run build && npm run build:man",
"build": "tsc -p .",
"build:man": "marked-man man/xd-deploy.1.ronn > xd-deploy.1"
},
"man": "xd-deploy.1",
"keywords": [
"adobe-xd",
"xd",
"adobe",
"developer-tools",
"watcher",
"network",
"cli",
"plugin",
"xdplugin"
],
"author": {
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka",
"email": "[email protected]"
},
"homepage": "https://github.com/pklaschka/xd-deploy#readme",
"license": "MIT",
"dependencies": {
"archiver": "^5.0.0",
"axios": "^0.27.2",
"body-parser": "latest",
"chokidar": "^3.2.1",
"commander": "^9.0.0",
"express": "^4.17.1",
"express-easy-zip": "^1.1.4",
"extract-zip": "^2.0.1",
"selfsigned": "^2.0.0",
"socket.io": "^4.0.0",
"socket.io-client": "latest"
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/body-parser": "^1.17.1",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/node": "^18.6.3",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"typescript": "^4.0.2",
"marked": "^4.0.5",
"marked-man": "^0.7.0"
},
"maintainers": [
"Pablo Klaschka <[email protected]> (https://github.com/pklaschka)"
],
"repository": "pklaschka/xd-deploy",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/pklaschka/xd-deploy/issues"
},
"engines": {
"node": ">8.0"
}
}