forked from alexjoverm/v-runtime-template
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "vue3-runtime-template",
"version": "1.0.2",
"description": "Create Vue 3 components by compiling templates on the fly",
"main": "dist/vue3-runtime-template.umd.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "microbundle index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattelen/vue3-runtime-template.git"
},
"keywords": [
"vuejs",
"vue3",
"dynamic",
"runtime",
"template"
],
"author": {
"name": "Alex J",
"email": "[email protected]"
},
"contributors": [
{
"name": "Matt Elen",
"url": "https://github.com/mattelen"
}
],
"license": "MIT",
"devDependencies": {
"acorn": "^8.0.4",
"microbundle": "^0.11.0"
},
"bugs": {
"url": "https://github.com/mattelen/vue3-runtime-template/issues"
},
"homepage": "https://github.com/mattelen/vue3-runtime-template#readme",
"module": "dist/vue3-runtime-template.es.js",
"unpkg": "dist/vue3-runtime-template.umd.js",
"browser": "dist/vue3-runtime-template.es.js",
"types": "vue3-runtime-template.d.ts",
"dependencies": {
"vue": "^3.0.0"
}
}