-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 999 Bytes
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
{
"name": "package-lightroom-classic",
"version": "1.0.5",
"description": "Lightroom Package",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"install:components": "cd ./components && npm install",
"build:components": "cd ./components && npm run build",
"dev:components": "cd ./components && npm run dev",
"postinstall": "run-p install:*",
"build": "run-p build:*",
"dev": "run-p dev:*"
},
"author": "intechstudio",
"license": "ISC",
"grid_editor": {
"componentsPath": "components/dist/components.js",
"preferenceComponent": "lightroom-preference",
"shortDescription": "Control Lightroom Classic through Grid modules.",
"mainIcon": "lightroom-logo.svg",
"menuIcon": "lightroom-menu-icon.svg"
},
"devDependencies": {
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"npm-run-all": "^4.1.5",
"open-file-explorer": "^1.0.2"
}
}