2021-03-18 14:26:41 +00:00
|
|
|
{
|
|
|
|
"name": "nuxt-framework",
|
2022-04-20 10:19:30 +00:00
|
|
|
"private": true,
|
2021-03-18 14:26:41 +00:00
|
|
|
"license": "MIT",
|
2021-10-02 16:01:17 +00:00
|
|
|
"type": "module",
|
2021-03-18 14:26:41 +00:00
|
|
|
"workspaces": [
|
2021-04-20 12:16:09 +00:00
|
|
|
"packages/*",
|
2022-03-30 15:59:28 +00:00
|
|
|
"examples/*/*",
|
2021-10-07 09:19:41 +00:00
|
|
|
"test/fixtures/*",
|
2021-07-12 10:35:50 +00:00
|
|
|
"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-04-20 10:19:30 +00:00
|
|
|
"cleanup": "rimraf 'packages/**/node_modules' 'examples/**/node_modules' 'node_modules'",
|
|
|
|
"dev": "yarn run nuxi dev playground",
|
|
|
|
"dev:build": "yarn run nuxi build playground",
|
2021-04-23 20:30:43 +00:00
|
|
|
"example": "yarn workspace example-$0 dev",
|
|
|
|
"example:build": "yarn workspace example-$0 build",
|
2021-11-10 12:06:22 +00:00
|
|
|
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
|
2022-04-06 05:56:08 +00:00
|
|
|
"lint:docs": "markdownlint ./docs/content && case-police 'docs/content**/*.md'",
|
|
|
|
"lint:docs:fix": "markdownlint ./docs/content --fix && case-police 'docs/content**/*.md' --fix",
|
2022-04-20 18:25:09 +00:00
|
|
|
"nuxi": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
|
|
|
"nuxt": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
2022-03-31 06:51:24 +00:00
|
|
|
"play": "echo use yarn dev && exit 1",
|
2022-02-18 18:14:57 +00:00
|
|
|
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
|
|
|
|
"stub": "lerna run prepack -- --stub",
|
2022-04-20 18:25:09 +00:00
|
|
|
"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",
|
2022-02-15 09:50:11 +00:00
|
|
|
"test:types": "yarn run nuxi prepare test/fixtures/basic && cd test/fixtures/basic && npx vue-tsc --noEmit",
|
2022-04-07 11:28:04 +00:00
|
|
|
"test:unit": "JITI_ESM_RESOLVE=1 yarn vitest run --dir packages",
|
2021-04-07 08:18:44 +00:00
|
|
|
"version": "yarn && git add yarn.lock"
|
2021-03-18 14:26:41 +00:00
|
|
|
},
|
2021-04-09 13:48:39 +00:00
|
|
|
"resolutions": {
|
2022-04-20 10:19:30 +00:00
|
|
|
"@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",
|
2022-04-13 18:54:20 +00:00
|
|
|
"unbuild": "^0.7.4"
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-03-18 14:26:41 +00:00
|
|
|
"devDependencies": {
|
2022-03-13 18:42:00 +00:00
|
|
|
"@nuxtjs/eslint-config-typescript": "^9.0.0",
|
2022-04-25 09:32:54 +00:00
|
|
|
"@types/node": "^16.11.28",
|
2022-04-20 10:19:30 +00:00
|
|
|
"@types/rimraf": "^3",
|
2022-04-25 09:32:54 +00:00
|
|
|
"@unocss/reset": "^0.31.14",
|
2022-04-08 13:09:11 +00:00
|
|
|
"case-police": "^0.5.3",
|
2022-04-25 09:32:54 +00:00
|
|
|
"eslint": "^8.14.0",
|
|
|
|
"eslint-plugin-jsdoc": "^39.2.8",
|
2022-02-15 09:53:20 +00:00
|
|
|
"execa": "^6.1.0",
|
2022-02-15 09:50:11 +00:00
|
|
|
"expect-type": "^0.13.0",
|
2022-02-03 10:21:51 +00:00
|
|
|
"globby": "^13.1.1",
|
2022-02-18 18:14:57 +00:00
|
|
|
"jiti": "^1.13.0",
|
2021-03-18 14:26:41 +00:00
|
|
|
"lerna": "^4.0.0",
|
2022-02-09 11:51:10 +00:00
|
|
|
"markdownlint-cli": "^0.31.1",
|
2021-09-27 12:49:36 +00:00
|
|
|
"pathe": "^0.2.0",
|
2022-04-20 10:19:30 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-03-25 14:43:14 +00:00
|
|
|
"typescript": "^4.6.3",
|
2022-04-13 18:54:20 +00:00
|
|
|
"unbuild": "^0.7.4",
|
2022-04-22 15:08:58 +00:00
|
|
|
"vitest": "^0.9.4",
|
2022-04-25 09:32:54 +00:00
|
|
|
"vue-tsc": "^0.34.10"
|
2021-09-20 18:59:49 +00:00
|
|
|
},
|
2022-04-20 10:19:30 +00:00
|
|
|
"packageManager": "yarn@3.2.0",
|
2021-10-18 19:31:15 +00:00
|
|
|
"engines": {
|
2022-04-19 22:14:27 +00:00
|
|
|
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
|
2022-04-20 10:19:30 +00:00
|
|
|
}
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|