-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "vue-layout-page",
"version": "1.0.0",
"description": "Three line layout for Vue page",
"keywords": ["vue3","vue-layout","layout"],
"scripts": {
"dev": "npm run build && node scripts/switch-vue.js 3 && vite --config ./vite.vue3.config.ts",
"dev2": "npm run build && node scripts/switch-vue.js 2 && vite --config ./vite.vue2.config.ts",
"build": "vite build"
},
"author": "chenguzhen87 <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"jsdelivr": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/chenguzhen87/vue-layout-page.git"
},
"bugs": {
"url": "https://github.com/chenguzhen87/vue-layout-page/issues"
},
"peerDependencies": {
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^17.0.30",
"@vitejs/plugin-vue": "^2.3.2",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "2.0.0-rc.21",
"element-plus": "^2.1.11",
"enquirer": "^2.3.6",
"execa": "^4.1.0",
"typescript": "^4.6.4",
"vite": "^2.9.6",
"vite-plugin-dts": "^1.1.1",
"vue": "^3.2.33",
"vue-tsc": "^0.34.11"
},
"dependencies": {
"@vueuse/core": "^8.3.1",
"vue-demi": "^0.12.5"
}
}