-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ampdeck",
"version": "0.2.0",
"private": true,
"description": "A physical command center for Amp Code on Stream Deck.",
"author": "dinsley",
"license": "MIT",
"homepage": "https://github.com/dinsley/ampdeck#readme",
"bugs": {
"url": "https://github.com/dinsley/ampdeck/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dinsley/ampdeck.git"
},
"overrides": {
"ejs": {
"jake": "12.10.1"
}
},
"scripts": {
"build": "rollup -c",
"docs:screenshots": "tsx scripts/generate-readme-screenshots.ts",
"pack": "npm run build && tsx scripts/pack-plugin.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "oxlint . --type-aware --deny-warnings --report-unused-disable-directives",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"validate": "streamdeck validate com.dinsley.ampdeck.sdPlugin",
"check": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run build && npm run validate",
"watch": "rollup -c -w --watch.onEnd=\"streamdeck restart com.dinsley.ampdeck\""
},
"type": "module",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@elgato/cli": "^1.7.4",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-swc": "^0.4.1",
"@rollup/plugin-terser": "^1.0.0",
"@swc/core": "^1.15.46",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.13.3",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "^7.0.2001",
"prettier": "^3.9.6",
"rollup": "^4.62.3",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
},
"dependencies": {
"@elgato/streamdeck": "^2.1.0",
"entities": "^8.0.0"
},
"allowScripts": {
"@swc/core@1.15.46": true,
"esbuild@0.28.1": true,
"fsevents@2.3.3": true
}
}