-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "package-photoshop",
"version": "0.0.1",
"description": "Photoshop package",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"install:components": "cd ./components && npm install",
"install:photoshop": "cd ./photoshop-plugin && npm install",
"build:components": "cd ./components && npm run build",
"build:photoshop": "cd ./photoshop-plugin && npm run ccx",
"dev:components": "cd ./components && npm run dev",
"dev:photoshop": "cd ./photoshop-plugin && npm run dev",
"postinstall": "run-p install:*",
"build": "run-p build:*",
"dev": "run-p dev:*"
},
"author": "",
"license": "ISC",
"grid_editor": {
"componentsPath": "components/dist/components.js",
"preferenceComponent": "photoshop-preference"
},
"dependencies": {
"@paymoapp/active-window": "^2.1.1",
"open-file-explorer": "^1.0.2",
"ws": "^8.18.0"
},
"devDependencies": {
"prettier": "2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"npm-run-all": "^4.1.5"
}
}