forked from rkamysz/adobe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "adobe-node",
"version": "1.1.3",
"description": "Control Adobe applications - such as Photoshop, Animate, Illustrator, InDesign - from node. Run JavaScript to remotely - from the command line - create, modify or export document content. This module can be used to automate the workflow by creating an action chain that can be executed without user intervention.",
"main": "dist/index",
"scripts": {
"build": "tsc"
},
"bin": {
"adobe-broadcast": "dist/adobe-broadcast.js"
},
"keywords": [
"adobe",
"photoshop",
"animate",
"illustrator",
"indesign",
"bridge",
"pipeline",
"jsx",
"jsfl",
"remote",
"broadcast"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rkamysz/adobe-node.git"
},
"author": "Radoslaw Kamysz",
"license": "MIT",
"bugs": {
"url": "https://github.com/rkamysz/adobe-node/issues"
},
"homepage": "https://github.com/rkamysz/adobe-node#readme",
"devDependencies": {
"@types/node": "^12.12.5"
},
"dependencies": {
"@types/minimist": "^1.2.0",
"minimist": "^1.2.0",
"tslib": "^1.10.0"
}
}