-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.43 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
74
75
76
77
78
79
{
"name": "vts-deck",
"productName": "VTS Deck",
"author": "greysdawn",
"description": "VTS Deck",
"version": "1.0.0",
"private": true,
"main": "server.cjs",
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"start": "vite build && electron .",
"app:dir": "vite build && electron-builder --dir",
"app:dist": "vite build && electron-builder"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-deb": "^7.6.1",
"@electron-forge/maker-rpm": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.1",
"@electron-forge/plugin-fuses": "^7.6.1",
"@electron/fuses": "^1.8.0",
"@iconify/json": "^2.2.239",
"@iconify/tailwind": "^1.1.2",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-node": "^5.2.2",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.4",
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"flowbite": "^2.5.1",
"flowbite-svelte": "^0.46.15",
"postcss": "^8.4.41",
"svelte": "^5.0.0",
"svelte-awesome-color-picker": "^3.1.4",
"tailwindcss": "^3.2.0",
"unplugin-icons": "^0.19.2",
"vite": "^5.4.4",
"ws": "^8.18.0"
},
"type": "module",
"dependencies": {
"@shopify/draggable": "^1.1.3",
"dotenv": "^16.4.5",
"electron-squirrel-startup": "^1.0.1",
"express": "^4.19.2",
"nanoid": "^5.0.9"
},
"build": {
"appId": "com.greysdawn.vtsdeck",
"mac": {
"category": "public.app-category.utilities"
},
"asar": "true",
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}",
"!src/",
"!**/static/*",
"build/"
]
}
}