forked from vue-styleguidist/vue-styleguidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 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-inbrowser-compiler",
"version": "4.50.0",
"description": "compile vue single file components right in your browser",
"module": "lib/vue-inbrowser-compiler.esm.js",
"main": "lib/vue-inbrowser-compiler.cjs.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "rollup -c",
"compile:watch": "rollup -c --watch"
},
"keywords": [
"vue",
"compile",
"live",
"browser",
"buble",
"acorn"
],
"dependencies": {
"acorn": "^6.4.2",
"acorn-jsx": "^5.3.1",
"buble": "^0.20.0",
"camelcase": "^5.3.1",
"detect-browser": "^5.2.0",
"vue-inbrowser-compiler-utils": "^4.50.0",
"walkes": "^0.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-typescript": "8.3.4",
"@types/buble": "0.20.1",
"@vue/test-utils": "1.3.0",
"rollup": "2.77.2",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vue": "2.7.8",
"vue-template-compiler": "2.7.8"
},
"peerDependencies": {
"vue": ">=2"
},
"author": "Bart Ledoux <[email protected]>",
"license": "MIT",
"homepage": "https://vue-styleguidist.github.io",
"repository": {
"type": "git",
"url": "https://github.com/vue-styleguidist/vue-styleguidist.git",
"directory": "packages/vue-inbrowser-compiler"
}
}