-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (70 loc) · 1.81 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
{
"name": "mini-tiny-vue",
"version": "3.14.0",
"private": true,
"packageManager": "[email protected]",
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"homepage": "https://opentiny.design/tiny-vue",
"keywords": [
"vue",
"vue3",
"frontend",
"component-library",
"components",
"vue-components",
"opentiny",
"renderless-components",
"headless-components"
],
"author": "OpenTiny Team",
"license": "MIT",
"main": "packages/index.js",
"engines": {
"node": ">=18",
"pnpm": ">=8.0"
},
"scripts": {
"dev2": "pnpm -C demos/vue2-app dev ",
"dev3": "pnpm -C demos/vue3-app dev ",
"build2": "pnpm -C internals/build-cmds build2",
"build3": "pnpm -C internals/build-cmds build3",
"build": "pnpm build2 && pnpm build3",
"build2_viteself": "pnpm -C internals/vue2-env build",
"build3_viteself": "pnpm -C internals/vue3-env build"
},
"dependencies": {},
"devDependencies": {},
"pnpm": {
"overrides": {
"@vue/compiler-sfc@3": "3.3.9",
"@vue/runtime-core@3": "3.3.9",
"@vue/runtime-dom@3": "3.3.9",
"@vue/shared@3": "3.3.9",
"[email protected]": "2.6.14",
"[email protected]": "2.7.10",
"[email protected]": "2.6.14",
"[email protected]": "2.7.10",
"vue@3": "3.3.9",
"vue2": "npm:[email protected]",
"vue2.7": "npm:[email protected]",
"vue3": "npm:[email protected]"
},
"packageExtensions": {
"[email protected]": {
"peerDependencies": {
"vue": "2.6.14"
}
},
"[email protected]": {
"peerDependencies": {
"vue": "2.7.10"
}
},
"@vue/composition-api": {
"peerDependencies": {
"vue": "2.6.14"
}
}
}
}
}