forked from rtugeek/weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "@widget-js/weather",
"type": "module",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"donwload": "node script/download.js",
"type-check": "vue-tsc --build --force",
"remote": "widget dependencies -t remote",
"local": "widget dependencies -t local",
"release": "widget release -t ftp"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@vueuse/core": "^10.9.0",
"@widget-js/core": "^24.1.1-beta.32",
"@widget-js/vue3": "^24.1.1-beta.32",
"axios": "^1.6.7",
"consola": "^3.2.3",
"dayjs": "^1.11.10",
"element-plus": "^2.6.0",
"qweather-icons": "^1.6.0",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.3",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/tsconfig": "^0.5.0",
"@widget-js/vite-plugin-widget": "^24.1.1-beta.30",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"sass": "^1.75.0",
"simple-git-hooks": "^2.10.0",
"ts-node": "^10.9.2",
"typescript": "~5.3.0",
"unocss": "^0.58.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vue-tsc": "^1.8.25"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}