Nuxt/packages/nuxt/package.json

126 lines
2.8 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt",
2023-04-20 13:51:12 +00:00
"version": "3.4.2",
"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.0",
"@nuxt/kit": "workspace:../kit",
"@nuxt/schema": "workspace:../schema",
"@nuxt/telemetry": "^2.2.0",
"@nuxt/ui-templates": "^1.1.1",
"@nuxt/vite-builder": "workspace:../vite",
"@unhead/ssr": "^1.1.26",
"@unhead/vue": "^1.1.26",
"@vue/shared": "^3.2.47",
"chokidar": "^3.5.3",
2021-11-22 23:20:20 +00:00
"cookie-es": "^0.5.0",
"defu": "^6.1.2",
"destr": "^1.2.2",
"devalue": "^4.3.0",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"fs-extra": "^11.1.1",
"globby": "^13.1.4",
"h3": "^1.6.4",
"hookable": "^5.5.3",
"jiti": "^1.18.2",
"klona": "^2.0.6",
"knitwork": "^1.0.0",
"local-pkg": "^0.4.3",
"magic-string": "^0.30.0",
"mlly": "^1.2.0",
"nitropack": "^2.3.3",
"nuxi": "workspace:../nuxi",
"nypm": "^0.2.0",
"ofetch": "^1.0.1",
"ohash": "^1.1.2",
"pathe": "^1.1.0",
"perfect-debounce": "^0.1.3",
"prompts": "^2.4.2",
"scule": "^1.0.0",
"strip-literal": "^1.0.1",
"ufo": "^1.1.1",
"unctx": "^2.3.0",
"unenv": "^1.4.1",
"unimport": "^3.0.6",
"unplugin": "^1.3.1",
"untyped": "^1.3.2",
"vue": "^3.2.47",
"vue-bundle-renderer": "^1.0.3",
"vue-devtools-stub": "^0.1.0",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@parcel/watcher": "^2.1.0",
"@types/estree": "^1.0.1",
"@types/fs-extra": "^11.0.1",
"@types/prompts": "^2.4.4",
"@vitejs/plugin-vue": "^4.1.0",
"acorn": "^8.8.2",
"unbuild": "latest",
"vite": "^4.3.1",
"vitest": "^0.30.1"
},
"peerDependencies": {
"@parcel/watcher": "^2.1.0",
"@types/node": "^14.18.0 || >=16.10.0"
},
"peerDependenciesMeta": {
"@parcel/watcher": {
"optional": true
}
},
"engines": {
"node": "^14.18.0 || >=16.10.0"
2021-03-18 14:26:41 +00:00
}
}