Nuxt/package.json

86 lines
3.2 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt-framework",
"private": true,
2021-03-18 14:26:41 +00:00
"license": "MIT",
"type": "module",
2021-03-18 14:26:41 +00:00
"workspaces": [
2021-04-20 12:16:09 +00:00
"packages/*",
"examples/*/*",
"test/fixtures/*",
"playground"
2021-03-18 14:26:41 +00:00
],
"scripts": {
2021-04-09 13:48:39 +00:00
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
2022-05-02 20:47:05 +00:00
"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",
"dev:preview": "yarn run nuxi preview playground",
2021-04-23 20:30:43 +00:00
"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 JITI_ESM_RESOLVE=1 node ./packages/nuxi/bin/nuxi.mjs",
"nuxt": "NUXT_TELEMETRY_DISABLED=1 JITI_ESM_RESOLVE=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",
2022-05-02 20:47:05 +00:00
"typecheck": "tsc --noEmit",
"version": "yarn && git add yarn.lock"
2021-03-18 14:26:41 +00:00
},
2021-04-09 13:48:39 +00:00
"resolutions": {
"@nuxt/kit": "link:./packages/kit",
"@nuxt/schema": "link:./packages/schema",
"@nuxt/test-utils": "link:./packages/test-utils",
"@nuxt/vite-builder": "link:./packages/vite",
"@nuxt/webpack-builder": "link:./packages/webpack",
"nuxi": "link:./packages/nuxi",
"nuxt": "link:./packages/nuxt",
"nuxt3": "link:./packages/nuxt",
"vite": "^3.1.8",
"unbuild": "^0.9.2"
2021-04-09 13:48:39 +00:00
},
2021-03-18 14:26:41 +00:00
"devDependencies": {
"@actions/core": "^1.10.0",
"@nuxt/test-utils": "link:./packages/test-utils",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@types/crawler": "^1.2.2",
"@types/node": "^16.11.65",
"@types/rimraf": "^3",
"@types/semver": "^7",
"@unocss/reset": "^0.45.29",
"case-police": "^0.5.10",
2022-09-20 10:57:06 +00:00
"changelogen": "^0.3.2",
"crawler": "^1.3.0",
"eslint": "^8.25.0",
"eslint-plugin-jsdoc": "^39.3.6",
"execa": "^6.1.0",
"expect-type": "^0.14.2",
"globby": "^13.1.2",
"jiti": "^1.16.0",
"lerna": "^6.0.1",
"markdownlint-cli": "^0.32.2",
"ohmyfetch": "^0.4.19",
"pathe": "^0.3.9",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"std-env": "^3.2.1",
"typescript": "^4.8.4",
"ufo": "^0.8.5",
"unbuild": "^0.9.2",
"vite": "^3.1.8",
"vitest": "~0.19.1",
"vue-tsc": "^1.0.8"
},
"packageManager": "yarn@3.2.4",
"engines": {
"node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0"
}
2021-03-18 14:26:41 +00:00
}