-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "@widget-js/ai",
"type": "module",
"version": "0.2.3",
"private": true,
"author": "Widget JS",
"license": "MIT",
"packageManager": "pnpm@8.15.8",
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite preview",
"remote": "widget dependencies -t remote",
"local": "widget dependencies -t local",
"release": "widget release -t ftp",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache . --fix"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@vueuse/core": "^9.4.0",
"@widget-js/core": "^24.1.1-beta.44",
"@widget-js/vue3": "^24.1.1-beta.48",
"consola": "^3.2.3",
"element-plus": "^2.2.28",
"nprogress": "^0.2.0",
"vue": "^3.2.30",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@types/nprogress": "^0.2.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/compiler-sfc": "^3.2.45",
"@vue/eslint-config-typescript": "^9.1.0",
"@widget-js/cli": "^24.1.1-beta.40",
"@widget-js/vite-plugin-widget": "^24.1.1-beta.41",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.2",
"eslint": "^8.26.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.21",
"sass": "^1.56.0",
"sass-loader": "^12.0.0",
"simple-git-hooks": "^2.9.0",
"style-loader": "^3.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^5.2.2",
"unocss": "^0.59.4",
"unplugin-auto-import": "^0.11.5",
"unplugin-vue-components": "^0.22.11",
"vite": "5.2.6",
"vue-loader": "^16.8.3",
"vue-tsc": "^1.0.11"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix --ignore-pattern '/dist' "
]
}
}