-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.56 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.56 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
64
65
66
67
68
69
{
"name": "stream-deck-github-utilities",
"version": "2.3.0",
"description": "Stream Deck plugin providing utilities to display information from GitHub",
"private": true,
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "npm run build && streamdeck restart com.pedrofuentes.github-utilities && rollup -c -w --watch.onEnd=\"streamdeck restart com.pedrofuentes.github-utilities\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"validate": "streamdeck validate release/com.pedrofuentes.github-utilities.sdPlugin",
"pack": "npm run build && npm run test && streamdeck pack release/com.pedrofuentes.github-utilities.sdPlugin --output release/",
"prepack": "npm run validate",
"streamdeck:link": "streamdeck link release/com.pedrofuentes.github-utilities.sdPlugin",
"streamdeck:unlink": "streamdeck unlink release/com.pedrofuentes.github-utilities.sdPlugin",
"streamdeck:restart": "streamdeck restart com.pedrofuentes.github-utilities",
"streamdeck:stop": "streamdeck stop com.pedrofuentes.github-utilities",
"streamdeck:validate": "streamdeck validate release/com.pedrofuentes.github-utilities.sdPlugin",
"streamdeck:pack": "npm run build && streamdeck pack release/com.pedrofuentes.github-utilities.sdPlugin --output release/",
"content:assets": "npx tsx scripts/convert-content-assets.ts",
"streamdeck:dev": "streamdeck dev",
"streamdeck:dev:disable": "streamdeck dev --disable"
},
"keywords": [
"stream-deck",
"elgato",
"github",
"plugin",
"utilities"
],
"author": "Pedro Pablo Fuentes Schuster",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrofuentes/stream-deck-github-utilities.git"
},
"bugs": {
"url": "https://github.com/pedrofuentes/stream-deck-github-utilities/issues"
},
"homepage": "https://github.com/pedrofuentes/stream-deck-github-utilities#readme",
"dependencies": {
"@elgato/streamdeck": "^2.0.0",
"git-network-graph": "^0.1.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"rollup": "^4.59.0",
"tslib": "^2.6.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}