-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
66 lines (66 loc) · 2.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "elgato-stream-deck-packages",
"version": "0.0.0",
"private": true,
"scripts": {
"postinstall": "husky",
"dev": "run build:root --watch",
"dev:demo": "yarn workspace @elgato-stream-deck/webhid-demo start",
"build": "run build:root && yarn workspace @elgato-stream-deck/webhid-demo build",
"build:root": "(run g:rimraf packages/*/dist || true) && run g:tsc --build tsconfig.build.json",
"test": "run lint && run unit",
"unit": "jest",
"lint:raw": "eslint",
"lint": "run lint:raw packages",
"lint-fix": "run lint --fix",
"bump": "lerna version --exact --conventional-commits --no-push -m \"chore(release): publish %s\" --force-publish",
"graduate2": "run bump --force-conventional-graduate",
"publish2": "run build && lerna publish from-package --pre-dist-tag next",
"validate:dependencies": "yarn npm audit && run license-validate",
"license-validate": "node ./scripts/license-check.mjs",
"g:tsc": "cd $INIT_CWD && tsc",
"g:rimraf": "cd $INIT_CWD && rimraf"
},
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
},
"devDependencies": {
"@companion-module/tools": "^2.0.0",
"@julusian/jpeg-turbo": "^2.1.0",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.46",
"eslint": "^9.9.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"jimp": "^0.22.12",
"lerna": "^8.1.8",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"sharp": "^0.33.5",
"snyk-nodejs-lockfile-parser": "^1.58.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.5.4",
"typescript-eslint": "^8.2.0",
"usb": "^2.13.0"
},
"workspaces": [
"packages/core",
"packages/node-lib",
"packages/node",
"packages/tcp",
"packages/webhid",
"packages/webhid-demo"
],
"packageManager": "[email protected]"
}