-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.58 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.58 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
70
71
72
73
{
"name": "stream-deck-ical",
"version": "2.4.4",
"description": "An elgato Stream Deck plugin that displays information from your calendar using an iCal URL. Visual cues and a countdown will help you end meetings on time and be ready for the next one.",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "cross-env NODE_ENV=development rollup -c",
"build:debug": "cross-env NODE_ENV=development STREAMDECK_DEBUG=1 rollup -c",
"build:production": "cross-env NODE_ENV=production rollup -c",
"watch": "cross-env NODE_ENV=development rollup -c -w",
"dev": "npm run build && streamdeck link dist/com.pedrofuentes.ical.sdPlugin",
"clean": "rimraf dist release",
"streamdeck:link": "streamdeck link dist/com.pedrofuentes.ical.sdPlugin",
"streamdeck:unlink": "streamdeck unlink dist/com.pedrofuentes.ical.sdPlugin",
"streamdeck:restart": "streamdeck restart com.pedrofuentes.ical",
"streamdeck:stop": "streamdeck stop com.pedrofuentes.ical",
"streamdeck:validate": "streamdeck validate dist/com.pedrofuentes.ical.sdPlugin",
"streamdeck:pack": "npm run build:production && streamdeck pack release/com.pedrofuentes.ical.sdPlugin --output release",
"streamdeck:dev": "streamdeck dev",
"streamdeck:dev:disable": "streamdeck dev --disable",
"content:assets": "npx tsx scripts/convert-content-assets.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrofuentes/stream-deck-ical.git"
},
"keywords": [
"ical",
"streamdeck",
"elgato",
"productivity"
],
"standard": {
"env": [
"jest"
]
},
"author": "Pedro Pablo Fuentes Schuster",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedrofuentes/stream-deck-ical/issues"
},
"homepage": "https://github.com/pedrofuentes/stream-deck-ical#readme",
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^11.1.0",
"@types/luxon": "^3.4.0",
"@types/node": "^20.0.0",
"cross-env": "^7.0.3",
"rimraf": "^5.0.0",
"rollup": "^4.9.0",
"rollup-plugin-copy": "^3.5.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@elgato/streamdeck": "^2.0.2",
"ical.js": "^2.2.1",
"luxon": "^3.4.0",
"rrule": "^2.8.1",
"tslib": "^2.8.1",
"windows-iana": "^5.0.0"
}
}