Nuxt/packages/nuxt/package.json

84 lines
2.0 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt",
2022-08-12 13:35:33 +00:00
"version": "3.0.0-rc.8",
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",
"./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",
2021-03-18 14:26:41 +00:00
"dist"
],
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-08-12 13:35:33 +00:00
"@nuxt/kit": "3.0.0-rc.8",
"@nuxt/schema": "3.0.0-rc.8",
"@nuxt/telemetry": "^2.1.4",
"@nuxt/ui-templates": "^0.3.2",
2022-08-12 13:35:33 +00:00
"@nuxt/vite-builder": "3.0.0-rc.8",
"@vue/reactivity": "^3.2.37",
"@vue/shared": "^3.2.37",
"@vueuse/head": "^0.7.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.7.16",
2021-03-18 14:26:41 +00:00
"hash-sum": "^2.0.0",
"hookable": "^5.2.2",
"knitwork": "^0.1.2",
"magic-string": "^0.26.2",
"mlly": "^0.5.14",
"nitropack": "^0.4.24",
2022-08-12 13:35:33 +00:00
"nuxi": "3.0.0-rc.8",
"ohash": "^0.1.5",
"ohmyfetch": "^0.4.18",
"pathe": "^0.3.5",
"perfect-debounce": "^0.1.3",
"scule": "^0.3.2",
"strip-literal": "^0.4.0",
"ufo": "^0.8.5",
"unctx": "^2.0.2",
"unenv": "^0.6.1",
"unimport": "^0.6.7",
"unplugin": "^0.9.2",
"untyped": "^0.4.7",
"vue": "^3.2.37",
"vue-bundle-renderer": "^0.4.2",
"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": {
2022-04-19 22:14:27 +00:00
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
2021-03-18 14:26:41 +00:00
}
}