Nuxt/packages/nuxt/package.json

91 lines
2.2 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt",
2022-09-20 16:38:31 +00:00
"version": "3.0.0-rc.11",
2021-03-18 14:26:41 +00:00
"repository": "nuxt/framework",
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
"types": "./types.d.ts",
"bin": {
2021-10-29 11:31:56 +00:00
"nuxi": "./bin/nuxt.mjs",
"nuxt": "./bin/nuxt.mjs"
},
"exports": {
".": "./dist/index.mjs",
"./config": {
"import": "./config.mjs",
"require": "./config.cjs",
"types": "./config.d.ts"
},
"./app": "./dist/app/index.mjs",
"./package.json": "./package.json"
},
"imports": {
"#app": "./dist/app/index.mjs",
"#head": "./dist/head/runtime/index.mjs",
"#pages": "./dist/pages/runtime/index.mjs"
},
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.*"
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.0",
2022-09-20 16:38:31 +00:00
"@nuxt/kit": "3.0.0-rc.11",
"@nuxt/schema": "3.0.0-rc.11",
"@nuxt/telemetry": "^2.1.6",
"@nuxt/ui-templates": "^0.4.0",
2022-09-20 16:38:31 +00:00
"@nuxt/vite-builder": "3.0.0-rc.11",
"@vue/reactivity": "^3.2.41",
"@vue/shared": "^3.2.41",
"@vueuse/head": "~1.0.0-rc.9",
"chokidar": "^3.5.3",
2021-11-22 23:20:20 +00:00
"cookie-es": "^0.5.0",
"defu": "^6.1.0",
"destr": "^1.1.1",
"escape-string-regexp": "^5.0.0",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"h3": "^0.8.1",
2021-03-18 14:26:41 +00:00
"hash-sum": "^2.0.0",
"hookable": "^5.4.1",
"knitwork": "^0.1.2",
"magic-string": "^0.26.7",
"mlly": "^0.5.16",
"nitropack": "npm:nitropack-edge@0.5.5-27764245.b884d0c",
2022-09-20 16:38:31 +00:00
"nuxi": "3.0.0-rc.11",
"ohash": "^0.1.5",
"ohmyfetch": "^0.4.19",
"pathe": "^0.3.9",
"perfect-debounce": "^0.1.3",
"scule": "^0.3.2",
"strip-literal": "^0.4.2",
"ufo": "^0.8.6",
"ultrahtml": "^0.3.3",
"unctx": "^2.0.2",
"unenv": "^0.6.2",
"unimport": "^0.6.8",
"unplugin": "^0.9.6",
"untyped": "^0.5.0",
"vue": "^3.2.41",
"vue-bundle-renderer": "^0.4.3",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/hash-sum": "^1.0.0",
2021-09-21 16:49:36 +00:00
"unbuild": "latest",
"vue-meta": "next"
},
"engines": {
"node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0"
2021-03-18 14:26:41 +00:00
}
}