forked from meel-hd/lofi-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1020 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1020 Bytes
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
{
"name": "LofiEngine",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"tauri": "tauri",
"tauri:d": "tauri dev",
"tauri:b": "tauri build --bundles deb",
"tauri:bd": "tauri build --debug --bundles deb",
"tauri:install": "tauri build --debug --bundles deb && sudo dpkg -i src-tauri/target/debug/bundle/deb/lofi-engine_1.0.1_amd64.deb"
},
"dependencies": {
"@tabler/icons-svelte": "^3.35.0",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-shell": "~2.3.3",
"tone": "^14.9.17"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@tauri-apps/cli": "^2.9.5",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^18.19.130",
"svelte": "^3.59.2",
"svelte-check": "^3.8.6",
"svelte-preprocess": "^5.1.4",
"tslib": "^2.8.1",
"typescript": "^4.9.5",
"vite": "^7.2.6"
}
}