-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 957 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 957 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
{
"name": "@codeexpander/plugin-demo-tauri-window",
"version": "0.1.4",
"private": true,
"type": "module",
"main": "dist/index.html",
"description": "Demo: Tauri Window API - Full @tauri-apps/api window demo. | Demo:Tauri 窗口 API - 展示窗口 API 完整功能。",
"scripts": {
"dev": "vite",
"build": "vite build && cp plugin.json dist/ && node -e \"const fs=require('fs');const p=require('./dist/plugin.json');p.main='index.html';fs.writeFileSync('dist/plugin.json',JSON.stringify(p,null,2));\"",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.3",
"vite": "^6.4.2"
}
}