mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
5dbc112418
Co-authored-by: Renovate Bot <bot@renovateapp.com>
74 lines
2.8 KiB
JSON
74 lines
2.8 KiB
JSON
{
|
|
"name": "nuxt-framework",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"examples/*/*",
|
|
"test/fixtures/*",
|
|
"playground"
|
|
],
|
|
"scripts": {
|
|
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
|
|
"changelog": "changelogen",
|
|
"cleanup": "rimraf 'packages/**/node_modules' 'examples/**/node_modules' 'node_modules'",
|
|
"dev": "yarn run nuxi dev playground",
|
|
"dev:build": "yarn run nuxi build playground",
|
|
"example": "yarn workspace example-$0 dev",
|
|
"example:build": "yarn workspace example-$0 build",
|
|
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
|
|
"lint:docs": "markdownlint ./docs/content && case-police 'docs/content**/*.md'",
|
|
"lint:docs:fix": "markdownlint ./docs/content --fix && case-police 'docs/content**/*.md' --fix",
|
|
"nuxi": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
|
"nuxt": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
|
"play": "echo use yarn dev && exit 1",
|
|
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
|
|
"stub": "lerna run prepack -- --stub",
|
|
"test:fixtures": "NUXT_TELEMETRY_DISABLED=1 yarn nuxi prepare test/fixtures/basic && JITI_ESM_RESOLVE=1 vitest run --dir test",
|
|
"test:fixtures:dev": "NUXT_TELEMETRY_DISABLED=1 NUXT_TEST_DEV=true yarn test:fixtures",
|
|
"test:fixtures:webpack": "NUXT_TELEMETRY_DISABLED=1 TEST_WITH_WEBPACK=1 yarn test:fixtures",
|
|
"test:types": "yarn run nuxi prepare test/fixtures/basic && cd test/fixtures/basic && npx vue-tsc --noEmit",
|
|
"test:unit": "JITI_ESM_RESOLVE=1 yarn vitest run --dir packages",
|
|
"typecheck": "tsc --noEmit",
|
|
"version": "yarn && git add yarn.lock"
|
|
},
|
|
"resolutions": {
|
|
"@nuxt/kit": "link:./packages/kit",
|
|
"@nuxt/schema": "link:./packages/schema",
|
|
"@nuxt/test-utils": "link:./packages/test-utils",
|
|
"@nuxt/vite": "link:./packages/vite",
|
|
"@nuxt/webpack": "link:./packages/webpack",
|
|
"nuxi": "link:./packages/nuxi",
|
|
"nuxt": "link:./packages/nuxt",
|
|
"nuxt3": "link:./packages/nuxt",
|
|
"unbuild": "^0.7.4"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxtjs/eslint-config-typescript": "^10.0.0",
|
|
"@types/node": "^16.11.36",
|
|
"@types/rimraf": "^3",
|
|
"@unocss/reset": "^0.34.0",
|
|
"case-police": "^0.5.3",
|
|
"changelogen": "^0.0.6",
|
|
"eslint": "^8.15.0",
|
|
"eslint-plugin-jsdoc": "^39.3.0",
|
|
"execa": "^6.1.0",
|
|
"expect-type": "^0.13.0",
|
|
"globby": "^13.1.1",
|
|
"jiti": "^1.13.0",
|
|
"lerna": "^5.0.0",
|
|
"markdownlint-cli": "^0.31.1",
|
|
"pathe": "^0.3.0",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^4.6.4",
|
|
"unbuild": "^0.7.4",
|
|
"vitest": "^0.12.7",
|
|
"vue-tsc": "^0.34.15"
|
|
},
|
|
"packageManager": "yarn@3.2.1",
|
|
"engines": {
|
|
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
|
|
}
|
|
}
|