-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.5 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.5 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "birda-gui",
"version": "0.1.0",
"description": "Desktop GUI for the birda bird species detection CLI",
"type": "module",
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-rebuild -f -w better-sqlite3",
"rebuild-sqlite": "electron-rebuild -f -w better-sqlite3",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint . && svelte-check --tsconfig ./tsconfig.json",
"lint:fix": "eslint --fix .",
"knip": "knip",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"validate": "npm run format:check && npm run lint && npm run typecheck && npm audit --omit=dev",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:linux": "npm run build && electron-builder --linux",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"prepare": "husky"
},
"homepage": "https://github.com/tphakala/birda-gui",
"repository": {
"type": "git",
"url": "https://github.com/tphakala/birda-gui.git"
},
"keywords": [],
"author": "Tomi P. Hakala",
"license": "MIT",
"build": {
"compression": "store",
"appId": "com.birda.gui",
"productName": "Birda GUI",
"directories": {
"output": "release"
},
"files": [
"out/**/*"
],
"extraResources": [
{
"from": "THIRD_PARTY_LICENSES.txt",
"to": "THIRD_PARTY_LICENSES.txt"
}
],
"extraMetadata": {
"main": "out/main/index.js"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Science"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.utilities"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh"
}
},
"dependencies": {
"@electron/rebuild": "^4.0.3",
"better-sqlite3": "^12.6.2",
"daisyui": "^5.5.18",
"music-metadata": "^11.11.2",
"wavesurfer.js": "^7.12.1"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.2",
"@inlang/paraglide-js": "^2.10.0",
"@lucide/svelte": "^0.563.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.1.18",
"@tsconfig/svelte": "^5.0.7",
"@types/better-sqlite3": "^7.6.13",
"electron": "^40.1.0",
"electron-builder": "^26.7.0",
"electron-vite": "^5.0.0",
"eslint": "^9.39.2",
"eslint-plugin-no-unsanitized": "^4.1.4",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"knip": "^5.83.1",
"lint-staged": "^16.2.7",
"maplibre-gl": "^5.17.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.49.2",
"svelte-check": "^4.3.6",
"svelte-maplibre-gl": "^1.0.3",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}