-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "streamdeck-plugin-template-monorepo",
"author": "Falvet Guillaume",
"license": "MIT",
"private": false,
"version": "2.1.0",
"scripts": {
"clean": "rimraf com.falvet-guillaume.template-plugin-ws.sdPlugin/bin",
"clean:package": "rimraf dist",
"build:pi": "npm run build --prefix property-inspector",
"build:plugin": "npm run build --prefix plugin",
"build": "npm run clean && npm run build:pi && npm run build:plugin",
"validate": "npx sd validate ./com.falvet-guillaume.template-plugin-ws.sdPlugin",
"packaging": "npm run clean:package && npm run validate && sd pack ./com.falvet-guillaume.template-plugin-ws.sdPlugin -o ./dist",
"hot-reload:mac": "bash rebuild-mac.sh",
"ws:logger": "ts-node ws-logger.js",
"version:sync": "bash sync_version_workspace.sh --sync",
"version:major": "bash sync_version_workspace.sh --major",
"version:minor": "bash sync_version_workspace.sh --minor",
"version:patch": "bash sync_version_workspace.sh --patch",
"prepare": "husky"
},
"devDependencies": {
"@elgato/cli": "^0.3.0",
"@types/ws": "^8.5.10",
"husky": "^9.0.11",
"rimraf": "^5.0.7",
"shared": "workspace:*",
"ts-node": "^10.9.2"
},
"dependencies": {
"@elgato/streamdeck": "^0.3.0",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"lint-staged": "^15.2.5",
"ws": "^8.17.0"
},
"engines": {
"node": ">= 20"
},
"prettier": "shared/src/.prettierrc",
"lint-staged": {
"{shared,property-inspector,plugin}/**/*{.ts,.tsx}": [
"prettier --write"
]
}
}