Nuxt/packages/nuxt3/package.json
Daniel Roe 73ba30fb69
refactor(schema,webpack)!: split out webpack and postcss build options (#2812)
* refactor: split out webpack and postcss build options

* feat(schema): set nuxt3 builder in config

* fix(schema): default postcss config file to false

* chore: update lockfile

* style: remove unused imports

* refactor(webpack): remove (previously disabled) babel config

* refactor: move shared vite options into schema

* fix(schema): omit __NUXT_BASE__ from defaults

* fix: move appDir-dependent options back to vite

* refactor: split out virtual modules

* refactor: extract compile/createDevMiddleware

* refactor: further improvements

* chore: remove `@nuxt/webpack-builder` dependency

* chore: update lockfile

* refactor: move `builder` option to top level

* fix: bind close to watcher instance

* chore: update lockfile

* fix: create portal between postcss & build.postcss.postcssOptions

* fix: remove duplicate

* fix: revert

* fix: use `postcss` directly

* fix: import builder from rootDir

* chore: dedupe webpack install

* test: update fixture to use `builder`

* fix: bind class in pify

Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2022-02-25 20:11:01 +01:00

75 lines
1.7 KiB
JSON

{
"name": "nuxt3",
"version": "3.0.0",
"repository": "nuxt/framework",
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
"types": "./types.d.ts",
"bin": {
"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",
"#meta": "./dist/meta/runtime/index.mjs",
"#pages": "./dist/pages/runtime/index.mjs"
},
"files": [
"app.d.ts",
"bin",
"types.d.ts",
"dist"
],
"scripts": {
"prepack": "unbuild"
},
"dependencies": {
"@nuxt/design": "^0.1.5",
"@nuxt/kit": "3.0.0",
"@nuxt/nitro": "3.0.0",
"@nuxt/schema": "3.0.0",
"@nuxt/vite-builder": "3.0.0",
"@vue/reactivity": "^3.2.31",
"@vue/shared": "^3.2.31",
"@vueuse/head": "^0.7.5",
"chokidar": "^3.5.3",
"cookie-es": "^0.5.0",
"defu": "^5.0.1",
"destr": "^1.1.0",
"escape-string-regexp": "^5.0.0",
"fs-extra": "^10.0.1",
"globby": "^13.1.1",
"h3": "^0.3.9",
"hash-sum": "^2.0.0",
"hookable": "^5.1.1",
"ignore": "^5.2.0",
"knitwork": "^0.1.0",
"mlly": "^0.4.3",
"murmurhash-es": "^0.1.1",
"nitropack": "npm:nitropack-edge@latest",
"nuxi": "3.0.0",
"ohmyfetch": "^0.4.15",
"pathe": "^0.2.0",
"scule": "^0.2.1",
"ufo": "^0.7.9",
"unplugin": "^0.3.2",
"vue": "^3.2.31",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/hash-sum": "^1.0.0",
"unbuild": "latest",
"vue-meta": "next"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
}
}