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

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

61 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2018-09-19 23:35:38 +08:00
{
2018-10-27 03:44:50 +08:00
"name": "@vue/runtime-dom",
2025-09-25 09:05:13 +08:00
"version": "3.5.22",
2018-10-27 03:44:50 +08:00
"description": "@vue/runtime-dom",
2018-09-19 23:35:38 +08:00
"main": "index.js",
2018-10-27 03:44:50 +08:00
"module": "dist/runtime-dom.esm-bundler.js",
2019-12-20 01:04:07 +08:00
"types": "dist/runtime-dom.d.ts",
"unpkg": "dist/runtime-dom.global.js",
"files": [
"index.js",
"dist"
],
"exports": {
".": {
"types": "./dist/runtime-dom.d.ts",
"node": {
"production": "./dist/runtime-dom.cjs.prod.js",
"development": "./dist/runtime-dom.cjs.js",
"default": "./index.js"
},
"module": "./dist/runtime-dom.esm-bundler.js",
"import": "./dist/runtime-dom.esm-bundler.js",
"require": "./index.js"
},
"./*": "./*"
},
2018-09-20 12:02:48 +08:00
"sideEffects": false,
2018-09-19 23:35:38 +08:00
"buildOptions": {
"name": "VueRuntimeDOM",
2019-12-11 10:29:52 +08:00
"formats": [
2019-12-11 11:14:02 +08:00
"esm-bundler",
"esm-browser",
2019-12-11 10:29:52 +08:00
"cjs",
"global"
2019-12-11 10:29:52 +08:00
]
2018-09-19 23:35:38 +08:00
},
"repository": {
"type": "git",
2022-01-18 16:43:59 +08:00
"url": "git+https://github.com/vuejs/core.git",
2020-08-30 21:06:06 +08:00
"directory": "packages/runtime-dom"
2018-09-19 23:35:38 +08:00
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
2022-01-18 16:43:59 +08:00
"url": "https://github.com/vuejs/core/issues"
2018-09-19 23:35:38 +08:00
},
2022-01-18 16:43:59 +08:00
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
2018-09-19 23:35:38 +08:00
"dependencies": {
2023-11-21 09:16:14 +08:00
"@vue/shared": "workspace:*",
"@vue/runtime-core": "workspace:*",
"@vue/reactivity": "workspace:*",
"csstype": "^3.1.3"
},
"devDependencies": {
"@types/trusted-types": "^2.0.7"
2018-09-19 23:35:38 +08:00
}
}