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/runtime-core",
| "version": "3.4.18",
| "description": "@vue/runtime-core",
| "main": "index.js",
| "module": "dist/runtime-core.esm-bundler.js",
| "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"
| },
| "./*": "./*"
| },
| "buildOptions": {
| "name": "VueRuntimeCore",
| "formats": [
| "esm-bundler",
| "cjs"
| ]
| },
| "sideEffects": false,
| "repository": {
| "type": "git",
| "url": "git+https://github.com/vuejs/core.git",
| "directory": "packages/runtime-core"
| },
| "keywords": [
| "vue"
| ],
| "author": "Evan You",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/vuejs/core/issues"
| },
| "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
| "dependencies": {
| "@vue/shared": "3.4.18",
| "@vue/reactivity": "3.4.18"
| }
| }
|
|