vue3-yuanma/packages/compiler-core/package.json

36 lines
742 B
JSON
Raw Normal View History

2018-09-20 00:26:50 +08:00
{
2018-10-27 03:44:50 +08:00
"name": "@vue/compiler-core",
2018-09-20 00:26:50 +08:00
"version": "3.0.0-alpha.1",
2018-10-27 03:44:50 +08:00
"description": "@vue/compiler-core",
2018-09-20 00:26:50 +08:00
"main": "index.js",
2018-10-27 03:44:50 +08:00
"module": "dist/compiler-core.esm-bundler.js",
"files": [
"index.js",
"dist"
],
"types": "dist/compiler-core.d.ts",
"buildOptions": {
2019-09-23 14:52:54 +08:00
"formats": [
"cjs"
]
},
2018-09-20 00:26:50 +08:00
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue/issues"
},
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-core#readme",
"dependencies": {
2019-10-02 23:05:56 +08:00
"acorn": "^7.1.0",
2019-09-23 14:52:54 +08:00
"estree-walker": "^0.8.1",
"source-map": "^0.7.3"
}
2018-09-20 12:02:48 +08:00
}