Nuxt/packages/nuxt/package.json

135 lines
3.0 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt",
2023-09-13 22:52:45 +00:00
"version": "3.7.3",
"repository": "nuxt/nuxt",
2021-03-18 14:26:41 +00:00
"license": "MIT",
"type": "module",
"types": "./types.d.ts",
"bin": {
2021-10-29 11:31:56 +00:00
"nuxi": "./bin/nuxt.mjs",
"nuxt": "./bin/nuxt.mjs"
},
"exports": {
".": {
"types": "./types.d.ts",
"import": "./dist/index.mjs"
},
"./config": {
"types": "./config.d.ts",
"import": "./config.js",
"require": "./config.cjs"
},
"./schema": {
"types": "./schema.d.ts",
"import": "./schema.js"
},
"./kit": {
"types": "./kit.d.ts",
"import": "./kit.js"
},
"./app": {
"types": "./dist/app/index.d.ts",
"import": "./dist/app/index.js"
},
"./package.json": "./package.json"
},
"imports": {
"#app": {
"types": "./dist/app/index.d.ts",
"import": "./dist/app/index.js"
}
},
2021-03-18 14:26:41 +00:00
"files": [
"app.d.ts",
2021-04-18 16:37:59 +00:00
"bin",
"types.d.ts",
"dist",
"config.*",
"kit.*",
"schema.*"
2021-03-18 14:26:41 +00:00
],
2021-04-09 13:48:39 +00:00
"scripts": {
"prepack": "unbuild"
2021-03-18 14:26:41 +00:00
},
"dependencies": {
"@nuxt/devalue": "^2.0.2",
"@nuxt/kit": "workspace:*",
"@nuxt/schema": "workspace:*",
"@nuxt/telemetry": "^2.5.0",
"@nuxt/ui-templates": "^1.3.1",
"@nuxt/vite-builder": "workspace:*",
"@unhead/dom": "^1.7.4",
"@unhead/ssr": "^1.7.4",
"@unhead/vue": "^1.7.4",
"@vue/shared": "^3.3.4",
"acorn": "8.10.0",
"c12": "^1.4.2",
"chokidar": "^3.5.3",
"cookie-es": "^1.0.0",
"defu": "^6.1.2",
"destr": "^2.0.1",
"devalue": "^4.3.2",
"esbuild": "^0.19.3",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"fs-extra": "^11.1.1",
"globby": "^13.2.2",
"h3": "^1.8.1",
"hookable": "^5.5.3",
"jiti": "^1.20.0",
"klona": "^2.0.6",
"knitwork": "^1.0.0",
"magic-string": "^0.30.3",
"mlly": "^1.4.2",
"nitropack": "^2.6.3",
"nuxi": "^3.8.4",
"nypm": "^0.3.3",
"ofetch": "^1.3.3",
"ohash": "^1.1.3",
"pathe": "^1.1.1",
"perfect-debounce": "^1.0.0",
"pkg-types": "^1.0.3",
"radix3": "^1.1.0",
"scule": "^1.0.0",
"std-env": "^3.4.3",
"strip-literal": "^1.3.0",
"ufo": "^1.3.0",
"ultrahtml": "^1.5.2",
"uncrypto": "^0.1.3",
"unctx": "^2.3.1",
"unenv": "^1.7.4",
"unimport": "^3.3.0",
"unplugin": "^1.5.0",
"unplugin-vue-router": "^0.6.4",
"untyped": "^1.4.0",
"vue": "^3.3.4",
"vue-bundle-renderer": "^2.0.0",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@parcel/watcher": "2.3.0",
"@types/estree": "1.0.1",
"@types/fs-extra": "11.0.2",
"@vitejs/plugin-vue": "4.3.4",
"unbuild": "latest",
"vite": "4.4.9",
"vitest": "0.33.0"
},
"peerDependencies": {
"@parcel/watcher": "^2.1.0",
"@types/node": "^14.18.0 || >=16.10.0"
},
"peerDependenciesMeta": {
"@parcel/watcher": {
"optional": true
},
"@types/node": {
"optional": true
}
},
"engines": {
"node": "^14.18.0 || >=16.10.0"
2021-03-18 14:26:41 +00:00
}
}