-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.88 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "temu-workbench",
"version": "1.0.0",
"description": "Temu工作台 - Temu素材管理桌面应用",
"main": "dist-electron/main.js",
"type": "module",
"author": {
"name": "Temu工作台",
"email": "support@supertools.com"
},
"homepage": "https://github.com/your-username/super-tools",
"repository": {
"type": "git",
"url": "https://github.com/your-username/super-tools.git"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:win": "npm run build -- --win",
"build:mac": "npm run build -- --mac",
"build:linux": "npm run build -- --linux",
"build:dir": "npm run build -- --dir",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps",
"generate-icons": "node scripts/generate-icons.cjs",
"create-icon-quick": "node scripts/create-icon-quick.cjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf dist dist-electron release",
"clean:release": "powershell -ExecutionPolicy Bypass -File scripts/clean-release.ps1",
"build:win:clean": "npm run clean:release && npm run build:win"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"antd": "^5.12.0",
"fs-extra": "^11.2.0",
"pinyin-pro": "^3.27.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"sharp": "^0.34.5",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-electron": "^0.28.1",
"vite-plugin-electron-renderer": "^0.14.5"
}
}