source: node_modules/@vue/runtime-core/package.json

Last change on this file was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago

Initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "name": "@vue/runtime-core",
3 "version": "3.5.13",
4 "description": "@vue/runtime-core",
5 "main": "index.js",
6 "module": "dist/runtime-core.esm-bundler.js",
7 "types": "dist/runtime-core.d.ts",
8 "files": [
9 "index.js",
10 "dist"
11 ],
12 "exports": {
13 ".": {
14 "types": "./dist/runtime-core.d.ts",
15 "node": {
16 "production": "./dist/runtime-core.cjs.prod.js",
17 "development": "./dist/runtime-core.cjs.js",
18 "default": "./index.js"
19 },
20 "module": "./dist/runtime-core.esm-bundler.js",
21 "import": "./dist/runtime-core.esm-bundler.js",
22 "require": "./index.js"
23 },
24 "./*": "./*"
25 },
26 "buildOptions": {
27 "name": "VueRuntimeCore",
28 "formats": [
29 "esm-bundler",
30 "cjs"
31 ]
32 },
33 "sideEffects": false,
34 "repository": {
35 "type": "git",
36 "url": "git+https://github.com/vuejs/core.git",
37 "directory": "packages/runtime-core"
38 },
39 "keywords": [
40 "vue"
41 ],
42 "author": "Evan You",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/vuejs/core/issues"
46 },
47 "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48 "dependencies": {
49 "@vue/shared": "3.5.13",
50 "@vue/reactivity": "3.5.13"
51 }
52}
Note: See TracBrowser for help on using the repository browser.