2021-03-18 14:26:41 +00:00
|
|
|
{
|
|
|
|
"name": "nuxt-framework",
|
2022-04-20 10:19:30 +00:00
|
|
|
"private": true,
|
2023-11-08 12:07:49 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nuxt/nuxt.git"
|
|
|
|
},
|
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
|
|
|
"scripts": {
|
2023-05-15 21:26:21 +00:00
|
|
|
"build": "pnpm --filter './packages/**' prepack",
|
2023-12-19 12:21:11 +00:00
|
|
|
"build:stub": "pnpm dev:prepare",
|
2023-09-05 11:27:41 +00:00
|
|
|
"cleanup": "rimraf 'packages/**/node_modules' 'playground/node_modules' 'node_modules'",
|
2022-10-17 10:13:30 +00:00
|
|
|
"dev": "pnpm play",
|
2023-12-19 12:21:11 +00:00
|
|
|
"dev:prepare": "pnpm --filter './packages/**' prepack --stub",
|
2021-11-10 12:06:22 +00:00
|
|
|
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
|
2023-04-04 13:39:10 +00:00
|
|
|
"lint:fix": "eslint --ext .vue,.ts,.js,.mjs . --fix",
|
2023-06-27 11:27:11 +00:00
|
|
|
"lint:docs": "markdownlint ./docs && case-police 'docs/**/*.md' *.md",
|
|
|
|
"lint:docs:fix": "markdownlint ./docs --fix && case-police 'docs/**/*.md' *.md --fix",
|
2023-06-27 09:38:40 +00:00
|
|
|
"lint:knip": "pnpx knip",
|
2023-04-10 16:53:36 +00:00
|
|
|
"play": "nuxi dev playground",
|
|
|
|
"play:build": "nuxi build playground",
|
|
|
|
"play:preview": "nuxi preview playground",
|
2023-09-19 21:31:18 +00:00
|
|
|
"test": "pnpm test:fixtures && pnpm test:fixtures:dev && pnpm test:fixtures:webpack && pnpm test:unit && pnpm test:runtime && pnpm test:types && pnpm typecheck",
|
2024-01-17 11:46:13 +00:00
|
|
|
"test:prepare": "jiti ./test/prepare.ts",
|
|
|
|
"test:fixtures": "pnpm test:prepare && vitest run --dir test",
|
2023-02-13 22:09:32 +00:00
|
|
|
"test:fixtures:dev": "TEST_ENV=dev pnpm test:fixtures",
|
|
|
|
"test:fixtures:webpack": "TEST_BUILDER=webpack pnpm test:fixtures",
|
2023-11-14 12:44:39 +00:00
|
|
|
"test:runtime": "vitest -c vitest.nuxt.config.ts --coverage",
|
2023-06-19 22:29:09 +00:00
|
|
|
"test:types": "pnpm --filter './test/fixtures/**' test:types",
|
2023-12-19 20:03:09 +00:00
|
|
|
"test:unit": "vitest run packages/ --coverage",
|
2022-10-17 10:10:05 +00:00
|
|
|
"typecheck": "tsc --noEmit"
|
2021-03-18 14:26:41 +00:00
|
|
|
},
|
2023-04-20 12:36:11 +00:00
|
|
|
"resolutions": {
|
|
|
|
"@nuxt/kit": "workspace:*",
|
|
|
|
"@nuxt/schema": "workspace:*",
|
|
|
|
"@nuxt/vite-builder": "workspace:*",
|
|
|
|
"@nuxt/webpack-builder": "workspace:*",
|
2024-01-12 12:38:47 +00:00
|
|
|
"rollup": "^4.9.5",
|
2023-04-20 12:36:11 +00:00
|
|
|
"nuxt": "workspace:*",
|
2024-01-05 20:16:44 +00:00
|
|
|
"vite": "5.0.11",
|
2024-01-15 18:09:09 +00:00
|
|
|
"vue": "3.4.14",
|
2023-10-17 09:14:11 +00:00
|
|
|
"magic-string": "^0.30.5"
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-03-18 14:26:41 +00:00
|
|
|
"devDependencies": {
|
2024-01-18 16:01:39 +00:00
|
|
|
"@codspeed/vitest-plugin": "3.0.0",
|
2023-11-13 11:47:52 +00:00
|
|
|
"@nuxt/eslint-config": "0.2.0",
|
2024-01-17 17:58:23 +00:00
|
|
|
"@nuxt/test-utils": "3.10.0",
|
2022-10-17 10:10:05 +00:00
|
|
|
"@nuxt/webpack-builder": "workspace:*",
|
2023-11-08 14:09:33 +00:00
|
|
|
"@types/fs-extra": "11.0.4",
|
2024-01-17 10:01:06 +00:00
|
|
|
"@types/node": "20.11.5",
|
2023-11-21 22:08:24 +00:00
|
|
|
"@types/semver": "7.5.6",
|
2024-01-01 09:04:19 +00:00
|
|
|
"@vitest/coverage-v8": "1.1.1",
|
2023-12-11 19:08:48 +00:00
|
|
|
"@vue/test-utils": "2.4.3",
|
2023-05-31 16:10:16 +00:00
|
|
|
"case-police": "0.6.1",
|
2023-08-23 08:11:00 +00:00
|
|
|
"changelogen": "0.5.5",
|
2023-07-06 08:05:39 +00:00
|
|
|
"consola": "3.2.3",
|
2023-05-31 16:10:16 +00:00
|
|
|
"devalue": "4.3.2",
|
2023-12-18 18:06:22 +00:00
|
|
|
"eslint": "8.56.0",
|
2023-12-14 20:26:10 +00:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2024-01-03 09:30:42 +00:00
|
|
|
"eslint-plugin-jsdoc": "48.0.2",
|
2023-05-31 16:10:16 +00:00
|
|
|
"eslint-plugin-no-only-tests": "3.1.0",
|
2023-12-21 12:03:23 +00:00
|
|
|
"eslint-plugin-unicorn": "50.0.1",
|
2023-10-17 11:25:38 +00:00
|
|
|
"execa": "8.0.1",
|
2023-11-28 12:19:37 +00:00
|
|
|
"fs-extra": "11.2.0",
|
2023-11-20 09:52:13 +00:00
|
|
|
"globby": "14.0.0",
|
2024-01-05 20:16:44 +00:00
|
|
|
"h3": "1.10.0",
|
2024-01-15 10:25:24 +00:00
|
|
|
"happy-dom": "13.1.4",
|
2023-10-31 13:30:44 +00:00
|
|
|
"jiti": "1.21.0",
|
2023-12-09 20:45:36 +00:00
|
|
|
"markdownlint-cli": "0.38.0",
|
2023-11-30 10:30:06 +00:00
|
|
|
"nitropack": "2.8.1",
|
2023-11-20 20:31:29 +00:00
|
|
|
"nuxi": "3.10.0",
|
2022-10-17 10:10:05 +00:00
|
|
|
"nuxt": "workspace:*",
|
2023-08-25 14:44:19 +00:00
|
|
|
"ofetch": "1.3.3",
|
2024-01-12 12:38:47 +00:00
|
|
|
"pathe": "1.1.2",
|
2024-01-16 23:17:25 +00:00
|
|
|
"playwright-core": "1.41.0",
|
2023-10-01 19:15:06 +00:00
|
|
|
"rimraf": "5.0.5",
|
2023-07-20 09:43:33 +00:00
|
|
|
"semver": "7.5.4",
|
2023-12-23 14:22:29 +00:00
|
|
|
"std-env": "3.7.0",
|
2023-12-07 20:47:28 +00:00
|
|
|
"typescript": "5.3.3",
|
2023-11-15 22:41:08 +00:00
|
|
|
"ufo": "1.3.2",
|
2024-01-01 09:04:19 +00:00
|
|
|
"vitest": "1.1.1",
|
2023-12-19 15:46:04 +00:00
|
|
|
"vitest-environment-nuxt": "1.0.0",
|
2024-01-15 18:09:09 +00:00
|
|
|
"vue": "3.4.14",
|
2024-01-09 13:47:37 +00:00
|
|
|
"vue-eslint-parser": "9.4.0",
|
2023-09-22 20:00:03 +00:00
|
|
|
"vue-router": "4.2.5",
|
2023-12-26 20:03:52 +00:00
|
|
|
"vue-tsc": "1.8.27"
|
2021-09-20 18:59:49 +00:00
|
|
|
},
|
2024-01-12 12:38:47 +00:00
|
|
|
"packageManager": "pnpm@8.14.1",
|
2021-10-18 19:31:15 +00:00
|
|
|
"engines": {
|
2023-04-24 21:24:38 +00:00
|
|
|
"node": "^14.18.0 || >=16.10.0"
|
2023-11-08 12:07:49 +00:00
|
|
|
},
|
|
|
|
"version": ""
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|