-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.31 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
{
"name": "@widget-js/hotspot",
"type": "module",
"version": "1.2.0",
"private": true,
"author": "Widget JS",
"license": "MIT",
"scripts": {
"serve": "vite",
"build": "vite build",
"build:local": "vite build --mode offline",
"preview": "vite preview",
"remote": "widget dependencies -t remote && pnpm install",
"local": "widget dependencies -t local && pnpm install",
"release": "widget release -t ftp",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache . --fix"
},
"dependencies": {
"@vueuse/core": "^9.4.0",
"@widget-js/core": "^24.1.1-beta.30",
"@widget-js/vue3": "^24.1.1-beta.31",
"axios": "^1.1.3",
"color": "^4.2.3",
"colorthief": "^2.4.0",
"dayjs": "^1.11.7",
"element-plus": "^2.2.28",
"lodash": "^4.17.21",
"vue": "^3.2.30",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@types/color": "^3.0.3",
"@types/lodash": "^4.14.186",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@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",
"@vueuse/shared": "^10.1.2",
"@widget-js/cli": "^24.1.1-beta.30",
"@widget-js/vite-plugin-widget": "^24.1.1-beta.30",
"css-loader": "^6.7.2",
"eslint": "8.48.0",
"eslint-plugin-vue": "^9.15.1",
"lint-staged": "^15.2.0",
"prettier": "^2.8.4",
"sass": "^1.56.0",
"sass-loader": "^12.0.0",
"simple-git": "^3.22.0",
"simple-git-hooks": "^2.9.0",
"style-loader": "^3.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.11.5",
"unplugin-vue-components": "^0.22.11",
"vite": "^4.4.11",
"vue-loader": "^16.8.3",
"vue-tsc": "^1.0.11"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"rollup",
"@types/react"
]
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}