-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 997 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 997 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
{
"name": "webutau",
"version": "1.1.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dict": "node scripts/build-reading-dict.mjs",
"test": "node --test test/*.test.mjs",
"check:max-lines": "node ./scripts/check-max-lines.mjs",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:prepare-assets": "node ./scripts/prepare-tauri-assets.mjs",
"tauri:dev:frontend": "node ./scripts/run-tauri-frontend.mjs dev --prepare-assets",
"tauri:build:frontend": "node ./scripts/run-tauri-frontend.mjs build --prepare-assets",
"release": "node ./scripts/release.mjs",
"release:dry-run": "node ./scripts/release.mjs --dry-run"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"vite": "6.4.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.705.0",
"@sglkc/kuromoji": "^1.1.0",
"@tonejs/midi": "^2.0.28",
"js-yaml": "^4.1.1",
"tone": "^14.7.77",
"wanakana": "^5.3.1"
}
}