-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.08 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "taim",
"type": "module",
"version": "0.0.1-beta",
"private": true,
"description": "Taim!",
"author": "badspider7",
"license": "MIT",
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue",
"template"
],
"main": "dist-electron/main/index.js",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"release:win": "vue-tsc --noEmit && vite build && electron-builder --win",
"rebuild": "electron rebuild.js",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"commit": "commit"
},
"dependencies": {
"@internationalized/date": "^3.5.5",
"@vicons/fluent": "^0.12.0",
"@vueuse/core": "^10.11.0",
"better-sqlite3": "^11.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"echarts": "^5.5.1",
"electron-updater": "^6.2.1",
"extract-file-icon": "^0.3.2",
"get-windows": "^9.1.1",
"lucide-vue-next": "^0.408.0",
"radix-vue": "^1.9.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.4",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt-cli": "^19.4.0",
"@types/node": "^20.14.11",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"electron": "^29.4.3",
"electron-builder": "^25.0.3",
"electron-devtools-installer": "^3.2.0",
"eslint": "^9.7.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"pinia": "^2.1.7",
"sass": "^1.77.8",
"tailwindcss": "^3.4.6",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.21",
"vue-router": "^4.4.0",
"vue-tsc": "^2.0.6"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}