2021-03-18 14:26:41 +00:00
|
|
|
{
|
|
|
|
"name": "nuxt-framework",
|
|
|
|
"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/*",
|
2021-07-12 10:35:50 +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",
|
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 .",
|
2021-10-29 11:26:01 +00:00
|
|
|
"lint:docs": "./node_modules/.bin/markdownlint ./",
|
2022-02-18 18:14:57 +00:00
|
|
|
"nuxi": "./node_modules/.bin/nuxi",
|
|
|
|
"nuxt": "./node_modules/.bin/nuxi",
|
|
|
|
"play": "yarn run nuxi dev playground",
|
|
|
|
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
|
|
|
|
"stub": "lerna run prepack -- --stub",
|
|
|
|
"test:fixtures": "JITI_ESM_RESOLVE=1 vitest test",
|
|
|
|
"test:fixtures:webpack": "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-02-18 18:14:57 +00:00
|
|
|
"test:unit": "JITI_ESM_RESOLVE=1 yarn vitest 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-02-10 17:29:59 +00:00
|
|
|
"@nuxt/ui": "npm:@nuxt/ui-edge@latest",
|
2022-02-18 18:14:57 +00:00
|
|
|
"jiti": "^1.13.0",
|
2022-02-10 17:29:59 +00:00
|
|
|
"nitropack-dev": "link:../nitropack",
|
2022-02-18 18:14:57 +00:00
|
|
|
"nuxt3": "workspace:./packages/nuxt3",
|
|
|
|
"unbuild": "^0.6.9"
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-03-18 14:26:41 +00:00
|
|
|
"devDependencies": {
|
2022-02-16 19:11:21 +00:00
|
|
|
"@iconify-json/carbon": "^1.1.1",
|
2021-12-23 19:27:08 +00:00
|
|
|
"@nuxt/ui": "^0.0.0-alpha.5",
|
2021-10-24 18:11:32 +00:00
|
|
|
"@nuxtjs/eslint-config": "^7.0.0",
|
|
|
|
"@nuxtjs/eslint-config-typescript": "^7.0.2",
|
2021-07-15 09:38:06 +00:00
|
|
|
"@types/jsdom": "^16",
|
2022-02-25 11:39:10 +00:00
|
|
|
"@types/node": "^16.11.26",
|
2021-04-23 19:52:32 +00:00
|
|
|
"@types/object-hash": "^2",
|
2022-02-27 19:38:00 +00:00
|
|
|
"@unocss/reset": "^0.26.4",
|
2022-02-21 11:29:59 +00:00
|
|
|
"esbuild": "^0.14.23",
|
2022-02-27 19:38:00 +00:00
|
|
|
"eslint": "^8.10.0",
|
2022-02-28 19:08:45 +00:00
|
|
|
"eslint-plugin-jsdoc": "^37.9.5",
|
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-28 11:30:54 +00:00
|
|
|
"miniflare": "^1.4.1",
|
2022-02-18 18:15:14 +00:00
|
|
|
"object-hash": "^3.0.0",
|
2021-09-27 12:49:36 +00:00
|
|
|
"pathe": "^0.2.0",
|
2022-01-24 12:38:03 +00:00
|
|
|
"typescript": "^4.5.5",
|
2022-01-27 19:26:36 +00:00
|
|
|
"unbuild": "^0.6.9",
|
2022-02-28 11:29:16 +00:00
|
|
|
"vitest": "^0.5.8",
|
2022-02-15 09:50:11 +00:00
|
|
|
"vue-router": "next",
|
2022-02-25 11:39:10 +00:00
|
|
|
"vue-tsc": "^0.32.0"
|
2021-09-20 18:59:49 +00:00
|
|
|
},
|
2021-10-18 19:31:15 +00:00
|
|
|
"engines": {
|
2021-10-25 14:14:52 +00:00
|
|
|
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
|
2022-02-18 18:14:57 +00:00
|
|
|
},
|
2022-02-25 11:39:10 +00:00
|
|
|
"packageManager": "yarn@3.2.0"
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|