-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.57 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
{
"name": "tta-gmsb-downloader",
"version": "0.1.0",
"description": "Download Tabletop Audio Patreon tracks (and free full versions) and maintain a Game Master Sound Board import library.",
"type": "module",
"main": "out/main/index.js",
"author": "Devin Sanders",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevinSanders/tabletop-audio-gmsb-downloader.git"
},
"homepage": "https://github.com/DevinSanders/tabletop-audio-gmsb-downloader#readme",
"bugs": {
"url": "https://github.com/DevinSanders/tabletop-audio-gmsb-downloader/issues"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron-vite preview",
"typecheck:node": "tsc -p tsconfig.node.json --noEmit",
"typecheck:web": "tsc -p tsconfig.web.json --noEmit",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"test": "vitest run",
"test:watch": "vitest",
"package": "electron-vite build && electron-builder"
},
"dependencies": {
"fflate": "^0.8.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^42.5.0",
"electron-builder": "^25.1.8",
"electron-vite": "^5.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^4.1.9"
},
"allowScripts": {
"electron@42.5.0": true,
"es5-ext@0.10.64": true,
"esbuild@0.25.12": true
}
}