-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 833 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 833 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
{
"name": "supernote",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "npm run build:sidecars && vite",
"build": "npm run build:sidecars && tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "node --test test/**/*.test.mjs",
"build:sidecars": "node scripts/build-sidecars.js",
"release": "node scripts/create-tag.js"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-os": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2",
"jquery": "^4.0.0",
"vite-plugin-static-copy": "^4.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}