2021-03-18 14:26:41 +00:00
{
2022-04-20 08:52:39 +00:00
"name" : "nuxt" ,
2024-06-11 08:44:43 +00:00
"version" : "3.12.0" ,
2023-11-08 12:07:49 +00:00
"repository" : {
"type" : "git" ,
2023-11-08 13:21:27 +00:00
"url" : "git+https://github.com/nuxt/nuxt.git" ,
"directory" : "packages/nuxt"
2023-11-08 12:07:49 +00:00
} ,
2023-11-08 13:21:27 +00:00
"homepage" : "https://nuxt.com" ,
2023-10-17 21:06:30 +00:00
"description" : "Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js." ,
2021-03-18 14:26:41 +00:00
"license" : "MIT" ,
2021-10-02 16:01:17 +00:00
"type" : "module" ,
2021-08-11 20:28:38 +00:00
"types" : "./types.d.ts" ,
2021-07-15 11:28:04 +00:00
"bin" : {
2023-11-08 12:07:49 +00:00
"nuxi" : "bin/nuxt.mjs" ,
"nuxt" : "bin/nuxt.mjs"
2021-07-15 11:28:04 +00:00
} ,
2022-02-18 18:26:43 +00:00
"exports" : {
2023-03-11 21:16:01 +00:00
"." : {
2024-01-18 10:04:59 +00:00
"types" : "./types.d.mts" ,
2023-03-11 21:16:01 +00:00
"import" : "./dist/index.mjs"
} ,
2022-09-14 10:37:30 +00:00
"./config" : {
2023-02-08 14:04:37 +00:00
"types" : "./config.d.ts" ,
2023-03-11 21:16:01 +00:00
"import" : "./config.js" ,
2023-02-08 14:04:37 +00:00
"require" : "./config.cjs"
2022-09-14 10:37:30 +00:00
} ,
2023-02-13 22:42:04 +00:00
"./schema" : {
"types" : "./schema.d.ts" ,
2023-03-11 21:16:01 +00:00
"import" : "./schema.js"
2023-02-13 22:42:04 +00:00
} ,
2023-03-03 14:48:04 +00:00
"./kit" : {
"types" : "./kit.d.ts" ,
2023-03-11 21:16:01 +00:00
"import" : "./kit.js"
} ,
"./app" : {
"types" : "./dist/app/index.d.ts" ,
"import" : "./dist/app/index.js"
2023-03-03 14:48:04 +00:00
} ,
2022-02-18 18:26:43 +00:00
"./package.json" : "./package.json"
} ,
"imports" : {
2023-03-11 21:16:01 +00:00
"#app" : {
"types" : "./dist/app/index.d.ts" ,
"import" : "./dist/app/index.js"
}
2022-02-18 18:26:43 +00:00
} ,
2021-03-18 14:26:41 +00:00
"files" : [
2022-02-18 18:26:43 +00:00
"app.d.ts" ,
2021-04-18 16:37:59 +00:00
"bin" ,
2021-08-11 20:28:38 +00:00
"types.d.ts" ,
2024-01-18 10:04:59 +00:00
"types.d.mts" ,
2022-09-14 10:37:30 +00:00
"dist" ,
2023-02-13 22:42:04 +00:00
"config.*" ,
2023-03-03 16:04:03 +00:00
"kit.*" ,
2023-02-13 22:42:04 +00:00
"schema.*"
2021-03-18 14:26:41 +00:00
] ,
2021-04-09 13:48:39 +00:00
"scripts" : {
2021-08-11 20:28:38 +00:00
"prepack" : "unbuild"
2021-03-18 14:26:41 +00:00
} ,
"dependencies" : {
2023-05-03 06:00:29 +00:00
"@nuxt/devalue" : "^2.0.2" ,
2024-06-07 06:37:13 +00:00
"@nuxt/devtools" : "^1.3.3" ,
2023-09-05 11:27:41 +00:00
"@nuxt/kit" : "workspace:*" ,
"@nuxt/schema" : "workspace:*" ,
2024-04-10 07:03:09 +00:00
"@nuxt/telemetry" : "^2.5.4" ,
2023-09-05 11:27:41 +00:00
"@nuxt/vite-builder" : "workspace:*" ,
2024-06-07 06:37:13 +00:00
"@unhead/dom" : "^1.9.12" ,
"@unhead/ssr" : "^1.9.12" ,
"@unhead/vue" : "^1.9.12" ,
2024-05-07 11:54:21 +00:00
"@vue/shared" : "^3.4.27" ,
2024-01-01 22:12:24 +00:00
"acorn" : "8.11.3" ,
2024-03-06 14:13:34 +00:00
"c12" : "^1.10.0" ,
2024-02-07 09:59:54 +00:00
"chokidar" : "^3.6.0" ,
2024-03-30 07:41:18 +00:00
"cookie-es" : "^1.1.0" ,
2024-01-05 21:00:11 +00:00
"defu" : "^6.1.4" ,
2024-02-22 13:12:00 +00:00
"destr" : "^2.0.3" ,
2024-04-20 05:14:10 +00:00
"devalue" : "^5.0.0" ,
2024-06-10 06:55:12 +00:00
"esbuild" : "^0.21.5" ,
2022-01-27 11:13:32 +00:00
"escape-string-regexp" : "^5.0.0" ,
2023-01-20 16:17:31 +00:00
"estree-walker" : "^3.0.3" ,
2023-11-28 12:19:37 +00:00
"fs-extra" : "^11.2.0" ,
2024-02-13 23:20:12 +00:00
"globby" : "^14.0.1" ,
2024-02-26 17:33:54 +00:00
"h3" : "^1.11.1" ,
2023-03-30 14:37:21 +00:00
"hookable" : "^5.5.3" ,
2024-04-19 08:48:19 +00:00
"ignore" : "^5.3.1" ,
2024-06-10 17:30:09 +00:00
"jiti" : "^1.21.6" ,
2023-04-20 12:33:45 +00:00
"klona" : "^2.0.6" ,
2024-03-30 20:48:13 +00:00
"knitwork" : "^1.1.0" ,
2024-04-18 03:20:42 +00:00
"magic-string" : "^0.30.10" ,
2024-06-07 06:37:13 +00:00
"mlly" : "^1.7.1" ,
2024-04-03 10:34:56 +00:00
"nitropack" : "^2.9.6" ,
2024-03-20 18:11:28 +00:00
"nuxi" : "^3.11.1" ,
2024-03-04 11:28:26 +00:00
"nypm" : "^0.3.8" ,
2024-03-21 16:16:04 +00:00
"ofetch" : "^1.3.4" ,
2023-08-11 12:20:42 +00:00
"ohash" : "^1.1.3" ,
2024-01-12 12:38:47 +00:00
"pathe" : "^1.1.2" ,
2023-05-04 04:51:44 +00:00
"perfect-debounce" : "^1.0.0" ,
2024-05-09 19:06:46 +00:00
"pkg-types" : "^1.1.1" ,
2024-03-26 13:41:49 +00:00
"radix3" : "^1.1.2" ,
2024-02-07 09:59:54 +00:00
"scule" : "^1.3.0" ,
2024-05-21 08:18:36 +00:00
"semver" : "^7.6.2" ,
2023-12-23 14:22:29 +00:00
"std-env" : "^3.7.0" ,
2024-03-29 12:08:42 +00:00
"strip-literal" : "^2.1.0" ,
2024-03-20 17:31:08 +00:00
"ufo" : "^1.5.3" ,
2024-02-22 13:12:00 +00:00
"ultrahtml" : "^1.5.3" ,
2023-06-07 12:30:41 +00:00
"uncrypto" : "^0.1.3" ,
2023-05-25 21:38:10 +00:00
"unctx" : "^2.3.1" ,
2024-01-05 20:16:44 +00:00
"unenv" : "^1.9.0" ,
2024-05-25 14:42:30 +00:00
"unimport" : "^3.7.2" ,
2024-03-29 12:08:42 +00:00
"unplugin" : "^1.10.1" ,
2023-09-22 20:00:03 +00:00
"unplugin-vue-router" : "^0.7.0" ,
2024-03-14 18:13:13 +00:00
"unstorage" : "^1.10.2" ,
2024-01-29 16:53:25 +00:00
"untyped" : "^1.4.2" ,
2024-05-07 11:54:21 +00:00
"vue" : "^3.4.27" ,
2024-05-09 10:14:25 +00:00
"vue-bundle-renderer" : "^2.1.0" ,
2022-08-17 14:44:36 +00:00
"vue-devtools-stub" : "^0.1.0" ,
2024-06-10 18:41:49 +00:00
"vue-router" : "^4.3.3"
2021-04-04 22:15:34 +00:00
} ,
"devDependencies" : {
2024-06-11 09:14:11 +00:00
"@nuxt/scripts" : "^0.4.7" ,
2024-05-22 16:06:36 +00:00
"@nuxt/ui-templates" : "1.3.4" ,
2024-02-24 10:11:43 +00:00
"@parcel/watcher" : "2.4.1" ,
2023-11-07 11:17:15 +00:00
"@types/estree" : "1.0.5" ,
2023-11-08 14:09:33 +00:00
"@types/fs-extra" : "11.0.4" ,
2024-02-09 23:59:45 +00:00
"@vitejs/plugin-vue" : "5.0.4" ,
2024-06-07 20:55:12 +00:00
"@vue/compiler-sfc" : "3.4.27" ,
2023-04-19 15:45:13 +00:00
"unbuild" : "latest" ,
2024-06-07 19:28:28 +00:00
"vite" : "5.2.13" ,
2024-05-04 15:09:25 +00:00
"vitest" : "1.6.0"
2021-08-11 20:28:38 +00:00
} ,
2023-04-06 12:33:07 +00:00
"peerDependencies" : {
2023-04-19 21:02:52 +00:00
"@parcel/watcher" : "^2.1.0" ,
2023-04-24 21:24:38 +00:00
"@types/node" : "^14.18.0 || >=16.10.0"
2023-04-06 12:33:07 +00:00
} ,
2023-04-19 21:02:52 +00:00
"peerDependenciesMeta" : {
"@parcel/watcher" : {
"optional" : true
2023-08-07 22:03:40 +00:00
} ,
"@types/node" : {
"optional" : true
2023-04-19 21:02:52 +00:00
}
} ,
2021-10-18 19:31:15 +00:00
"engines" : {
2023-04-24 21:24:38 +00:00
"node" : "^14.18.0 || >=16.10.0"
2021-03-18 14:26:41 +00:00
}
}