-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@airpower/web",
"type": "module",
"version": "3.0.0",
"description": "AirPower-Web, 一个基于 Vue3 Element Plus TypeScript 的快速开发脚手架。",
"author": {
"name": "Hamm",
"email": "admin@hamm.cn",
"url": "https://github.com/HammCn"
},
"license": "MIT",
"homepage": "https://github.com/AirPowerTeam/AirPower-Web#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AirPowerTeam/AirPower-Web.git"
},
"bugs": {
"url": "https://github.com/AirPowerTeam/AirPower-Web/issues"
},
"keywords": [
"AirPower",
"AirPower-Web",
"class-transformer",
"typescript",
"oop",
"class"
],
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/index.d.ts",
"files": [
"assets",
"dist"
],
"scripts": {
"build": "eslint && tsc && vite build",
"lint": "eslint src --ext .ts",
"preview": "vite preview"
},
"dependencies": {
"@airpower/enum": "^4.0.0",
"@airpower/i18n": "^4.0.0",
"@airpower/transformer": "^4.0.0",
"@airpower/util": "^4.0.0",
"@element-plus/icons-vue": "^2.3.2",
"axios": "1.18.0",
"element-plus": "^2.14.4",
"qrcode.vue": "^3.10.0",
"vue": "^3.5.41",
"vue-clipboard3": "^2.0.0",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.3.0",
"@types/node": "^26.2.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/language-core": "^3.3.9",
"eslint": "^10.8.1",
"sass-embedded": "^1.100.0",
"typescript": "^6.0.3",
"vite": "8.0.16",
"vite-plugin-dts": "^5.0.3"
},
"publishConfig": {
"access": "public"
}
}