-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.2 KB
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
{
"name": "funflix-web",
"version": "1.0.2",
"description": "funflix 的 Web 界面:静态托管 + 反代后端接口,start/stop/restart/status 一个命令搞定",
"type": "module",
"packageManager": "pnpm@12.1.0",
"engines": {
"node": ">=20"
},
"bin": {
"funflix-web": "bin/cli.js"
},
"files": [
"dist",
"bin",
"server"
],
"publishConfig": {
"registry": "https://packages.aliyun.com/5fc5eb115dbd287006145e5f/npm/funnpm/"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint . --fix"
},
"dependencies": {
"@vicons/ionicons5": "^0.13.0",
"naive-ui": "^2.45.2",
"vue": "^3.5.41",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.3.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/eslint-config-typescript": "^14.9.0",
"eslint": "^10.10.0",
"eslint-plugin-vue": "^10.11.0",
"globals": "^17.12.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.70.0",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.2.2",
"vitest": "^5.0.1",
"vue-tsc": "^3.3.11"
}
}