-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 841 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": "roguetop",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:ext": "esbuild --bundle --minify --target=es6 --outfile=ext/index_min.js ext/index.ts",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint ./src ./ext/**/*.ts",
"lint:fix": "eslint --fix ./src ./ext/**/*.ts"
},
"dependencies": {
"@tauri-apps/api": ">=2.0.0-beta.0",
"@tauri-apps/plugin-shell": ">=2.0.0-beta.0",
"preact": "^10.16.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@tauri-apps/cli": ">=2.0.0-beta.0",
"esbuild": "^0.21.1",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"internal-ip": "^7.0.0",
"typescript": "^5.0.2",
"typescript-eslint": "^7.8.0",
"vite": "^5.0.0"
}
}