-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.74 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "schedule",
"version": "0.2.0-dev",
"private": true,
"packageManager": "[email protected]",
"description": "A Schedule Tools, You can create a scheduled task by using the cron string",
"author": {
"name": "xing403",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/xing403/schedule"
},
"keywords": [
"cron",
"schedule",
"directive",
"auto",
"task"
],
"main": "background.ts",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@intlify/core-base": "10.0.0-alpha.1",
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^10.9.0",
"axios": "^1.7.2",
"cron-parser": "^4.9.0",
"electron-log": "5.0.0-rc.1",
"element-plus": "^2.7.2",
"md5": "^2.3.0",
"mqtt": "^5.5.5",
"nprogress": "^0.2.0",
"path-browserify": "^1.0.1",
"pinia": "^2.1.7",
"sortablejs": "^1.15.2",
"vue": "^3.4.27",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2",
"xgplayer": "^3.0.17",
"xgplayer-music": "^3.0.17"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@iconify/json": "^2.2.218",
"@iconify/vue": "^4.1.2",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@types/md5": "^2.3.5",
"@types/node": "^20.12.10",
"@types/nprogress": "^0.2.3",
"@types/path-browserify": "^1.0.2",
"@unocss/eslint-config": "^0.53.6",
"@unocss/reset": "^0.53.6",
"@unocss/transformer-directives": "^0.56.5",
"@vitejs/plugin-vue": "^4.6.2",
"@vue-macros/volar": "^0.10.2",
"@vue/test-utils": "^2.4.6",
"electron": "~30.0.2",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.5",
"pnpm": "^8.15.8",
"simple-git-hooks": "^2.11.1",
"taze": "^0.10.3",
"typescript": "^5.4.5",
"unocss": "^0.60.4",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"unplugin-vue-macros": "^2.9.4",
"vite": "^4.5.3",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-meta-layouts": "^0.3.4",
"vitest": "^1.6.0",
"vue-tsc": "^1.8.27"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"eslintConfig": {
"extends": [
"@antfu",
"@unocss"
]
}
}