vue3-core/packages/runtime-core/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
JSON
Raw Normal View History

2018-09-19 23:35:38 +08:00
{
2018-10-27 03:44:50 +08:00
"name": "@vue/runtime-core",
2024-11-15 22:45:28 +08:00
"version": "3.5.13",
2018-10-27 03:44:50 +08:00
"description": "@vue/runtime-core",
2018-09-19 23:35:38 +08:00
"main": "index.js",
2018-10-27 03:44:50 +08:00
"module": "dist/runtime-core.esm-bundler.js",
2019-12-20 01:04:07 +08:00
"types": "dist/runtime-core.d.ts",
"files": [
"index.js",
"dist"
],
"exports": {
".": {
"types": "./dist/runtime-core.d.ts",
"node": {
"production": "./dist/runtime-core.cjs.prod.js",
"development": "./dist/runtime-core.cjs.js",
"default": "./index.js"
},
"module": "./dist/runtime-core.esm-bundler.js",
"import": "./dist/runtime-core.esm-bundler.js",
"require": "./index.js"
},
"./*": "./*"
},
2019-12-11 11:14:02 +08:00
"buildOptions": {
"name": "VueRuntimeCore",
2019-12-11 11:14:02 +08:00
"formats": [
"esm-bundler",
"cjs"
]
},
2018-09-20 12:02:48 +08:00
"sideEffects": false,
2018-09-19 23:35:38 +08:00
"repository": {
"type": "git",
2024-10-05 15:59:15 +08:00
"url": "git+https://github.com/vuejs/vue-vapor.git",
2020-08-30 21:06:06 +08:00
"directory": "packages/runtime-core"
2018-09-19 23:35:38 +08:00
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
2024-10-05 15:59:15 +08:00
"url": "https://github.com/vuejs/vue-vapor/issues"
2018-09-19 23:35:38 +08:00
},
2024-10-05 15:59:15 +08:00
"homepage": "https://github.com/vuejs/vue-vapor/tree/main/packages/runtime-core#readme",
2018-09-19 23:35:38 +08:00
"dependencies": {
2023-11-21 09:16:14 +08:00
"@vue/shared": "workspace:*",
2024-05-01 19:01:57 +08:00
"@vue/reactivity": "workspace:*",
"@vue/runtime-shared": "workspace:*"
2018-09-19 23:35:38 +08:00
}
}