-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
{
"author": "Scott Bedard",
"description": "The missing createApp function from Vue 2.7",
"dependencies": {
"vue-router": "^3.0.0",
"vuex": "^3.0.0"
},
"devDependencies": {
"@bedard/vue-forward-2": "file:versions/2.7",
"@bedard/vue-forward-3": "file:versions/3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.30",
"@vitejs/plugin-vue2": "^2.3.1",
"@vitest/coverage-v8": "^1.4.0",
"happy-dom": "^14.0.0",
"lodash-es": "^4.17.21",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.4.0",
"vue": "^2.7.0",
"vue3": "npm:vue@^3.4.0"
},
"files": [
"dist",
"src"
],
"license": "MIT",
"main": "dist/vue-forward.js",
"name": "@bedard/vue-forward",
"type": "module",
"version": "1.1.13",
"peerDependencies": {
"vue-router": "^3.0.0",
"vuex": "^3.0.0"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
},
"vuex": {
"optional": true
}
},
"scripts": {
"build:versions": "(cd versions/2.7 && vite build) && (cd versions/3 && vite build)",
"build": "vite build",
"coverage": "vitest run --coverage",
"test": "vitest"
}
}