forked from electerious/lightroom-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "lightroom-controller",
"version": "1.1.0",
"description": "Control Adobe Lightroom CC using HTTP requests by using the Lightroom External Controller API",
"keywords": [
"lightroom",
"creative-cloud",
"controller",
"websocket",
"plugin",
"adobe"
],
"homepage": "https://github.com/electerious/lightroom-controller",
"repository": {
"type": "git",
"url": "https://github.com/electerious/lightroom-controller.git"
},
"license": "MIT",
"type": "module",
"bin": "./bin/index.js",
"files": [
"src"
],
"scripts": {
"format": "npm run prettier -- --write",
"prettier": "prettier --ignore-path .gitignore '**/*.{js,json,md,yml}'",
"start": "./bin/index.js",
"test": "npm run prettier -- --check && node --test"
},
"dependencies": {
"commander": "^14.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@electerious/prettier-config": "^3.0.0",
"prettier": "^3.6.2"
},
"authors": [
"Tobias Reich <tobias@electerious.com>"
]
}