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-05-02 20:47:05 +00:00
|
|
|
"changelog": "changelogen",
|
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-07-07 16:26:04 +00:00
|
|
|
"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",
|
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",
|
2022-05-02 20:47:05 +00:00
|
|
|
"typecheck": "tsc --noEmit",
|
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-07-21 13:59:00 +00:00
|
|
|
"vite": "~3.0.2",
|
2022-07-20 16:58:21 +00:00
|
|
|
"unbuild": "^0.7.6"
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-03-18 14:26:41 +00:00
|
|
|
"devDependencies": {
|
2022-05-02 13:19:14 +00:00
|
|
|
"@nuxtjs/eslint-config-typescript": "^10.0.0",
|
2022-07-17 13:13:15 +00:00
|
|
|
"@types/node": "^16.11.45",
|
2022-04-20 10:19:30 +00:00
|
|
|
"@types/rimraf": "^3",
|
2022-07-20 16:58:21 +00:00
|
|
|
"@unocss/reset": "^0.44.5",
|
2022-07-08 12:42:43 +00:00
|
|
|
"case-police": "^0.5.6",
|
2022-06-12 22:41:53 +00:00
|
|
|
"changelogen": "^0.1.1",
|
2022-07-17 13:13:15 +00:00
|
|
|
"eslint": "^8.20.0",
|
2022-06-20 08:21:04 +00:00
|
|
|
"eslint-plugin-jsdoc": "^39.3.3",
|
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-06-12 19:39:36 +00:00
|
|
|
"globby": "^13.1.2",
|
2022-06-20 15:40:20 +00:00
|
|
|
"jiti": "^1.14.0",
|
2022-07-07 15:30:10 +00:00
|
|
|
"lerna": "^5.1.8",
|
2022-07-17 13:13:15 +00:00
|
|
|
"markdownlint-cli": "^0.32.0",
|
2022-07-01 10:37:12 +00:00
|
|
|
"pathe": "^0.3.2",
|
2022-04-20 10:19:30 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-06-20 08:21:04 +00:00
|
|
|
"typescript": "^4.7.4",
|
2022-07-20 16:58:21 +00:00
|
|
|
"unbuild": "^0.7.6",
|
2022-07-17 13:13:15 +00:00
|
|
|
"vitest": "^0.18.1",
|
2022-07-20 16:58:21 +00:00
|
|
|
"vue-tsc": "^0.38.9"
|
2021-09-20 18:59:49 +00:00
|
|
|
},
|
2022-07-21 13:59:00 +00:00
|
|
|
"packageManager": "yarn@3.2.2",
|
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
|
|
|
}
|