mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-31 15:50:32 +00:00
73ba30fb69
* 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>
36 lines
711 B
JSON
36 lines
711 B
JSON
{
|
|
"name": "@nuxt/schema",
|
|
"version": "3.0.0",
|
|
"repository": "nuxt/framework",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"schema"
|
|
],
|
|
"scripts": {
|
|
"prepack": "unbuild"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash.template": "^4",
|
|
"@types/semver": "^7",
|
|
"unbuild": "latest"
|
|
},
|
|
"dependencies": {
|
|
"c12": "^0.1.3",
|
|
"create-require": "^1.1.1",
|
|
"defu": "^5.0.1",
|
|
"jiti": "^1.13.0",
|
|
"pathe": "^0.2.0",
|
|
"postcss-import-resolver": "^2.0.0",
|
|
"scule": "^0.2.1",
|
|
"std-env": "^3.0.1",
|
|
"ufo": "^0.7.9"
|
|
},
|
|
"engines": {
|
|
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
|
|
}
|
|
}
|