-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
42
43
44
45
46
{
"name": "lightroom-controller",
"version": "1.2.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": {
"eslint": "eslint \"**/*.js\"",
"format": "npm run eslint -- --fix && npm run prettier -- --write",
"lint": "npm run eslint && npm run prettier -- --check",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,json,md,yml}\"",
"start": "./bin/index.js",
"test": "npm run lint && node --test"
},
"dependencies": {
"commander": "^14.0.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@electerious/eslint-config": "^5.2.1",
"@electerious/prettier-config": "^4.0.0",
"eslint": "^9.39.2",
"get-port": "^7.1.0",
"prettier": "^3.7.4"
},
"authors": [
"Tobias Reich <tobias@electerious.com>"
]
}