-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "frame-less-ui",
"version": "0.0.0",
"description": "frame-less-ui, 一个跨框架的轻量前端ui组件库",
"author": "lammu",
"private": true,
"keywords": [
"frame-less-ui",
"framelessui",
"ui library",
"web component",
"vue",
"shadow dom"
],
"type": "module",
"scripts": {
"dev": "vite --force",
"build": "cross-env output=js yarn vite build",
"build:vue2": "yarn vite build --config ./vite.config.vue2.ts",
"build:all": "yarn build & yarn build:vue2",
"new:comp": "ts-node scripts/newVueComponent.ts",
"docs": "cd ./docs && yarn dev"
},
"dependencies": {
"element-plus": "^2.9.3",
"qrcode": "^1.5.3",
"vue": "^3.5.13"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@rollup/plugin-terser": "0.4.4",
"@types/node": "^20.11.20",
"@types/qrcode": "^1.5.5",
"@types/react": "18.3.1",
"@vitejs/plugin-legacy": "4.1.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue2": "^2.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "^15.5.0",
"sass": "~1.79.6",
"typescript": "^5.3.3",
"vite": "^6.0.7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-dts": "3.9.1",
"vue2fless": "0.7.16"
},
"workspaces": {
"packages": [
"docs",
"dependences/vitejs-plugin-vue2fless"
],
"nohoist": [
"docs/*"
]
},
"resolutions": {},
"engines": {
"node": ">=16.0.0"
}
}