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": {
|
2024-05-07 21:45:03 +00:00
|
|
|
"build": "pnpm --filter './packages/**' prepack",
|
2023-12-19 12:21:11 +00:00
|
|
|
"build:stub": "pnpm dev:prepare",
|
2022-10-17 10:13:30 +00:00
|
|
|
"dev": "pnpm play",
|
2024-06-06 11:40:25 +00:00
|
|
|
"dev:prepare": "pnpm --filter './packages/**' prepack --stub && pnpm --filter './packages/ui-templates' build",
|
2025-01-17 21:30:43 +00:00
|
|
|
"debug:prepare": "TIMINGS_DEBUG=true pnpm dev:prepare",
|
|
|
|
"debug:build": "TIMINGS_DEBUG=true pnpm build",
|
|
|
|
"debug:dev": "rm -rf **/node_modules/.cache/jiti && pnpm nuxi dev",
|
2024-04-05 18:08:32 +00:00
|
|
|
"lint": "eslint . --cache",
|
|
|
|
"lint:fix": "eslint . --cache --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",
|
2024-11-26 13:01:38 +00:00
|
|
|
"lint:knip": "knip",
|
2023-04-10 16:53:36 +00:00
|
|
|
"play": "nuxi dev playground",
|
|
|
|
"play:build": "nuxi build playground",
|
2024-05-23 08:18:31 +00:00
|
|
|
"play:generate": "nuxi generate playground",
|
2023-04-10 16:53:36 +00:00
|
|
|
"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",
|
2024-05-01 20:46:57 +00:00
|
|
|
"test:runtime": "vitest -c vitest.nuxt.config.ts",
|
2023-06-19 22:29:09 +00:00
|
|
|
"test:types": "pnpm --filter './test/fixtures/**' test:types",
|
2024-05-07 21:45:03 +00:00
|
|
|
"test:unit": "vitest run packages/",
|
2024-12-09 12:28:48 +00:00
|
|
|
"test:attw": "pnpm --filter './packages/**' test:attw",
|
2024-02-15 10:07:39 +00:00
|
|
|
"typecheck": "tsc --noEmit",
|
2024-08-06 16:15:00 +00:00
|
|
|
"typecheck:docs": "DOCS_TYPECHECK=true pnpm nuxi prepare && nuxt-content-twoslash verify --content-dir docs --languages html"
|
2021-03-18 14:26:41 +00:00
|
|
|
},
|
2023-04-20 12:36:11 +00:00
|
|
|
"resolutions": {
|
2025-01-17 21:30:43 +00:00
|
|
|
"@nuxt/cli": "3.20.0",
|
2023-04-20 12:36:11 +00:00
|
|
|
"@nuxt/kit": "workspace:*",
|
2024-10-09 13:57:54 +00:00
|
|
|
"@nuxt/rspack-builder": "workspace:*",
|
2023-04-20 12:36:11 +00:00
|
|
|
"@nuxt/schema": "workspace:*",
|
|
|
|
"@nuxt/vite-builder": "workspace:*",
|
|
|
|
"@nuxt/webpack-builder": "workspace:*",
|
2025-01-16 10:35:34 +00:00
|
|
|
"@types/node": "22.10.7",
|
2025-01-14 09:31:46 +00:00
|
|
|
"@unhead/dom": "1.11.18",
|
|
|
|
"@unhead/schema": "1.11.18",
|
|
|
|
"@unhead/shared": "1.11.18",
|
|
|
|
"@unhead/ssr": "1.11.18",
|
|
|
|
"@unhead/vue": "1.11.18",
|
2024-11-17 15:41:21 +00:00
|
|
|
"@vue/compiler-core": "3.5.13",
|
|
|
|
"@vue/compiler-dom": "3.5.13",
|
|
|
|
"@vue/shared": "3.5.13",
|
2024-10-05 18:41:35 +00:00
|
|
|
"c12": "2.0.1",
|
2024-07-03 20:47:40 +00:00
|
|
|
"h3": "npm:h3-nightly@2.0.0-1718872656.6765a6e",
|
2024-12-18 16:18:33 +00:00
|
|
|
"jiti": "2.4.2",
|
2024-12-16 15:08:36 +00:00
|
|
|
"magic-string": "^0.30.17",
|
2024-11-02 11:17:23 +00:00
|
|
|
"nitro": "npm:nitro-nightly@3.0.0-beta-28796231.359af68d",
|
2023-04-20 12:36:11 +00:00
|
|
|
"nuxt": "workspace:*",
|
2024-09-17 14:01:47 +00:00
|
|
|
"ohash": "1.1.4",
|
2025-01-14 12:19:44 +00:00
|
|
|
"postcss": "8.5.1",
|
2025-01-10 15:18:03 +00:00
|
|
|
"rollup": "4.30.1",
|
2024-10-10 18:01:22 +00:00
|
|
|
"send": ">=1.1.0",
|
2025-01-10 15:18:03 +00:00
|
|
|
"typescript": "5.7.3",
|
2024-09-04 19:10:14 +00:00
|
|
|
"ufo": "1.5.4",
|
2025-01-13 22:04:59 +00:00
|
|
|
"unbuild": "3.3.1",
|
2025-01-14 09:31:46 +00:00
|
|
|
"unhead": "1.11.18",
|
2025-01-14 10:01:18 +00:00
|
|
|
"unimport": "3.14.6",
|
2025-01-04 20:04:51 +00:00
|
|
|
"vite": "6.0.7",
|
2024-11-17 15:41:21 +00:00
|
|
|
"vue": "3.5.13"
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-03-18 14:26:41 +00:00
|
|
|
"devDependencies": {
|
2025-01-13 09:47:03 +00:00
|
|
|
"@arethetypeswrong/cli": "0.17.3",
|
2025-01-17 21:30:43 +00:00
|
|
|
"@babel/core": "7.26.0",
|
|
|
|
"@babel/helper-plugin-utils": "7.26.5",
|
2025-01-12 13:10:02 +00:00
|
|
|
"@nuxt/cli": "3.20.0",
|
2025-01-10 15:18:03 +00:00
|
|
|
"@nuxt/eslint-config": "0.7.5",
|
2024-02-16 20:31:15 +00:00
|
|
|
"@nuxt/kit": "workspace:*",
|
2024-10-09 13:57:54 +00:00
|
|
|
"@nuxt/rspack-builder": "workspace:*",
|
2025-01-12 11:13:43 +00:00
|
|
|
"@nuxt/test-utils": "3.15.4",
|
2022-10-17 10:10:05 +00:00
|
|
|
"@nuxt/webpack-builder": "workspace:*",
|
2024-05-20 05:33:36 +00:00
|
|
|
"@testing-library/vue": "8.1.0",
|
2025-01-17 21:30:43 +00:00
|
|
|
"@types/babel__core": "7.20.5",
|
|
|
|
"@types/babel__helper-plugin-utils": "7.10.3",
|
2025-01-16 10:35:34 +00:00
|
|
|
"@types/node": "22.10.7",
|
2024-02-25 09:54:45 +00:00
|
|
|
"@types/semver": "7.5.8",
|
2025-01-14 09:31:46 +00:00
|
|
|
"@unhead/schema": "1.11.18",
|
|
|
|
"@unhead/vue": "1.11.18",
|
2025-01-17 22:26:20 +00:00
|
|
|
"@vitest/coverage-v8": "3.0.2",
|
2024-05-07 11:54:21 +00:00
|
|
|
"@vue/test-utils": "2.4.6",
|
2025-01-17 21:30:43 +00:00
|
|
|
"acorn": "8.14.0",
|
2024-08-05 15:33:27 +00:00
|
|
|
"autoprefixer": "10.4.20",
|
2024-11-26 13:44:59 +00:00
|
|
|
"case-police": "0.7.2",
|
2024-09-19 13:47:11 +00:00
|
|
|
"changelogen": "0.5.7",
|
2025-01-13 22:04:59 +00:00
|
|
|
"consola": "3.4.0",
|
2024-09-04 19:49:55 +00:00
|
|
|
"cssnano": "7.0.6",
|
2024-08-08 09:47:44 +00:00
|
|
|
"destr": "2.0.3",
|
2024-09-25 22:31:40 +00:00
|
|
|
"devalue": "5.1.1",
|
2025-01-11 17:17:35 +00:00
|
|
|
"eslint": "9.18.0",
|
2024-08-16 09:37:35 +00:00
|
|
|
"eslint-plugin-no-only-tests": "3.3.0",
|
2025-01-04 20:04:51 +00:00
|
|
|
"eslint-plugin-perfectionist": "4.6.0",
|
2025-01-10 13:38:17 +00:00
|
|
|
"eslint-typegen": "1.0.0",
|
2025-01-17 21:30:43 +00:00
|
|
|
"estree-walker": "3.0.3",
|
2024-06-26 13:18:05 +00:00
|
|
|
"h3": "npm:h3-nightly@2.0.0-1718872656.6765a6e",
|
2025-01-15 12:43:41 +00:00
|
|
|
"happy-dom": "16.6.0",
|
2024-12-03 15:47:02 +00:00
|
|
|
"installed-check": "9.3.0",
|
2024-12-18 16:18:33 +00:00
|
|
|
"jiti": "2.4.2",
|
2025-01-17 11:31:39 +00:00
|
|
|
"knip": "5.42.2",
|
2025-01-17 21:30:43 +00:00
|
|
|
"magic-string": "0.30.17",
|
2024-11-26 13:44:59 +00:00
|
|
|
"markdownlint-cli": "0.43.0",
|
2025-01-10 13:38:15 +00:00
|
|
|
"memfs": "4.17.0",
|
2024-11-02 11:17:23 +00:00
|
|
|
"nitro": "npm:nitro-nightly@3.0.0-beta-28796231.359af68d",
|
2022-10-17 10:10:05 +00:00
|
|
|
"nuxt": "workspace:*",
|
2024-11-27 16:56:49 +00:00
|
|
|
"nuxt-content-twoslash": "0.1.2",
|
2024-10-08 18:56:52 +00:00
|
|
|
"ofetch": "1.4.1",
|
2025-01-10 15:18:03 +00:00
|
|
|
"pathe": "2.0.1",
|
2025-01-13 11:51:55 +00:00
|
|
|
"pkg-pr-new": "0.0.39",
|
2024-12-10 08:06:06 +00:00
|
|
|
"playwright-core": "1.49.1",
|
2025-01-15 11:31:56 +00:00
|
|
|
"rollup": "4.30.1",
|
2024-07-18 17:01:34 +00:00
|
|
|
"semver": "7.6.3",
|
2024-12-11 14:00:30 +00:00
|
|
|
"sherif": "1.1.1",
|
2024-11-08 21:16:01 +00:00
|
|
|
"std-env": "3.8.0",
|
2024-12-29 13:11:18 +00:00
|
|
|
"tinyexec": "0.3.2",
|
2024-10-25 10:40:54 +00:00
|
|
|
"tinyglobby": "0.2.10",
|
2025-01-17 21:30:43 +00:00
|
|
|
"ts-blank-space": "0.4.4",
|
2025-01-10 15:18:03 +00:00
|
|
|
"typescript": "5.7.3",
|
2024-07-18 17:01:34 +00:00
|
|
|
"ufo": "1.5.4",
|
2025-01-17 21:30:43 +00:00
|
|
|
"unbuild": "3.3.1",
|
2025-01-17 22:26:20 +00:00
|
|
|
"vitest": "3.0.2",
|
2024-08-16 18:57:59 +00:00
|
|
|
"vitest-environment-nuxt": "1.0.1",
|
2024-11-17 15:41:21 +00:00
|
|
|
"vue": "3.5.13",
|
2024-12-23 22:32:18 +00:00
|
|
|
"vue-tsc": "2.2.0",
|
2024-12-19 11:29:46 +00:00
|
|
|
"webpack": "5.97.1"
|
2021-09-20 18:59:49 +00:00
|
|
|
},
|
2025-01-13 22:04:59 +00:00
|
|
|
"packageManager": "pnpm@9.15.4",
|
2024-09-21 11:10:59 +00:00
|
|
|
"version": ""
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|