-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "vue-caster",
"version": "0.1.3",
"description": "Command line tool that can switch Vue versions.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vue",
"vue-demi"
],
"author": "shunnNet <wendell20904102@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/shunnNet/vue-caster"
},
"license": "MIT",
"exports": {
".": {
"types": "./caster/index.d.ts",
"require": "./caster/index.cjs",
"import": "./caster/index.mjs",
"browser": "./caster/index.mjs"
},
"./compiler-sfc": {
"types": "./compiler-sfc/index.d.ts",
"import": "./compiler-sfc/index.mjs",
"require": "./compiler-sfc/index.js"
},
"./package.json": "./package.caster.json"
},
"files": [
"caster",
"compiler-sfc",
"bin",
"scripts",
"v2",
"v3",
"v2.7",
"package.caster.json"
],
"bin": {
"v-cast": "bin/v-cast.js"
},
"devDependencies": {
"@vue/composition-api": "^1.7.2",
"vue2": "npm:vue@2.6.11",
"vue2.7": "npm:vue@2.7.16",
"vue3": "npm:vue@3.4.34"
}
}