-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
90 lines (90 loc) · 2.65 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
{
"name": "km-music-player",
"private": true,
"version": "1.2.0",
"type": "module",
"description": "KMMusicPlayer",
"author": {
"name": "Yxcr",
"email": "[email protected]",
"url": "https://github.com/XiangZi7"
},
"license": "MIT",
"homepage": "https://github.com/XiangZi7/KMMusicPlayer",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "oxlint && eslint",
"lint:fix": "oxlint --fix && eslint --fix",
"format": "prettier --write src/"
},
"dependencies": {
"highlight.js": "^11.10.0",
"markdown-it": "^14.1.0",
"pinia": "^2.1.7",
"vue": "^3.5.6",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@iconify/json": "^2.2.230",
"@iconify/vue": "^4.1.2",
"@rushstack/eslint-patch": "^1.8.0",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.14.5",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^11.0.3",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"cypress": "^13.12.0",
"dayjs": "^1.11.13",
"echarts": "^5.5.1",
"echarts-liquidfill": "^3.1.0",
"element-plus": "^2.9.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-oxlint": "^0.12.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.23.0",
"globals": "^15.8.0",
"jsdom": "^24.1.0",
"npm-run-all2": "^6.2.0",
"nprogress": "^0.2.0",
"oxlint": "^0.12.0",
"pinia-plugin-persistedstate": "^3.2.1",
"postcss": "^8.4.39",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.8",
"start-server-and-test": "^2.0.4",
"tailwindcss": "^3.4.6",
"terser": "^5.31.6",
"typescript": "~5.4.0",
"typescript-eslint": "^7.16.1",
"unplugin-auto-import": "^0.18.0",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.3",
"vite": "^6.0.3",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.21",
"vue3-video-play": "1.3.1"
},
"engines": {
"node": ">=16.18.0"
}
}