-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "generator-repl",
"private": true,
"version": "1.0.0",
"description": "REPL for Adobe Photoshop Generator",
"main": "lib/main.js",
"author": "Marek Hrabe <[email protected]> (https://github.com/marekhrabe)",
"license": "MIT",
"generator-core-version": "*",
"dependencies": {
"ansi-to-html": "^0.2.0",
"open": "0.0.5",
"panel-photoshop-bridge": "^2.0.0",
"pngjs": "^0.4.0",
"q": "^1.0.1",
"repl-promised": "^0.1.0",
"temp": "^0.8.1"
},
"devDependencies": {
"panel-photoshop-devstack": "^1.2.1",
"panel-photoshop-extension": "^2.3.1"
},
"panel": {
"title": "REPL",
"icons": {
"light": "icons/light.png",
"dark": "icons/dark.png"
},
"static": "panel/",
"port": 57632,
"debugPort": 57631,
"useSSL": true,
"identifier": "com.marekhrabe.repl",
"cert": "marek-repl.p12",
"sizes": {
"min": {
"width": 210,
"height": 200
},
"default": {
"width": 350,
"height": 600
},
"max": {
"width": 1000,
"height": 1000
}
},
"photoshopVersion": [
"15.1",
"16.9"
],
"madebysource": {}
},
"scripts": {
"postinstall": "cd ./panel && npm install",
"start": "./node_modules/.bin/autoreload",
"extension": "node -e \"require('panel-photoshop-extension')(require('./package.json'))\""
}
}