-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "switchboard",
"version": "1.3.2",
"description": "Stream Deck plugin: jump to (or open) a Safari tab, with multi-account Gmail/Calendar presets, custom sites, and private-window targets.",
"type": "module",
"private": true,
"scripts": {
"build": "rollup -c",
"postbuild": "npm run validate",
"build:helper": "bash scripts/build-helpers.sh",
"validate": "streamdeck validate com.movingavg.switchboard.sdPlugin",
"pack": "streamdeck pack com.movingavg.switchboard.sdPlugin --output dist --force",
"pack:zip": "mkdir -p dist && ditto -c -k --keepParent com.movingavg.switchboard.sdPlugin dist/com.movingavg.switchboard.sdPlugin.zip",
"watch": "rollup -c -w",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@elgato/streamdeck": "^1.0.0"
},
"devDependencies": {
"@elgato/cli": "^1.7.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.6",
"rollup": "^4.0.0",
"tslib": "^2.7.0",
"typescript": "^5.6.0",
"vitest": "^3.2.6"
}
}