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",
|
|
|
|
"stub": "lerna run prepack -- --stub",
|
2021-04-09 16:03:27 +00:00
|
|
|
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
|
2021-08-10 17:37:03 +00:00
|
|
|
"nuxi": "./node_modules/.bin/nuxi",
|
|
|
|
"nuxt": "./node_modules/.bin/nuxi",
|
2021-10-29 10:38:22 +00:00
|
|
|
"play": "yarn run nuxi dev 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 .",
|
2021-10-29 11:26:01 +00:00
|
|
|
"lint:docs": "./node_modules/.bin/markdownlint ./",
|
2021-07-15 09:38:06 +00:00
|
|
|
"test": "yarn lint && yarn test:presets",
|
2022-01-13 17:54:33 +00:00
|
|
|
"test:presets": "vitest test/presets",
|
2021-10-26 12:59:05 +00:00
|
|
|
"test:bridge:webpack": "TEST_BRIDGE=1 yarn test:presets",
|
|
|
|
"test:bridge:vite": "TEST_BRIDGE_VITE=1 TEST_BRIDGE=1 yarn test:presets",
|
2022-01-13 17:54:33 +00:00
|
|
|
"test:unit": "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": {
|
2021-09-21 16:49:36 +00:00
|
|
|
"nuxt3": "workspace:./packages/nuxt3",
|
2022-01-05 18:37:56 +00:00
|
|
|
"@nuxt/ui": "npm:@nuxt/ui-edge@^0.0.0-27346724.df72ccf",
|
2021-12-20 11:33:18 +00:00
|
|
|
"unbuild": "^0.6.7",
|
2021-10-18 15:36:24 +00:00
|
|
|
"jiti": "^1.12.9"
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-03-18 14:26:41 +00:00
|
|
|
"devDependencies": {
|
2021-12-23 19:27:08 +00:00
|
|
|
"@iconify-json/carbon": "^1.0.12",
|
|
|
|
"@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-01-11 18:01:39 +00:00
|
|
|
"@types/node": "^16.11.19",
|
2021-04-23 19:52:32 +00:00
|
|
|
"@types/object-hash": "^2",
|
2022-01-13 13:13:58 +00:00
|
|
|
"@unocss/reset": "^0.22.2",
|
2022-01-11 17:45:11 +00:00
|
|
|
"esbuild": "^0.14.11",
|
2022-01-05 18:37:56 +00:00
|
|
|
"eslint": "^8.6.0",
|
2022-01-11 17:45:11 +00:00
|
|
|
"eslint-plugin-jsdoc": "^37.6.1",
|
2021-11-18 18:12:19 +00:00
|
|
|
"execa": "^6.0.0",
|
2022-01-13 18:21:49 +00:00
|
|
|
"globby": "^12.0.2",
|
2021-10-18 13:38:04 +00:00
|
|
|
"jiti": "^1.12.9",
|
2021-03-18 14:26:41 +00:00
|
|
|
"lerna": "^4.0.0",
|
2021-11-21 12:32:53 +00:00
|
|
|
"markdownlint-cli": "^0.30.0",
|
2021-09-28 11:30:54 +00:00
|
|
|
"miniflare": "^1.4.1",
|
2021-06-07 09:12:36 +00:00
|
|
|
"object-hash": "^2.2.0",
|
2021-09-27 12:49:36 +00:00
|
|
|
"pathe": "^0.2.0",
|
2021-12-14 15:46:05 +00:00
|
|
|
"typescript": "^4.5.4",
|
2021-12-20 11:33:18 +00:00
|
|
|
"unbuild": "^0.6.7",
|
2022-01-13 17:59:07 +00:00
|
|
|
"vitest": "^0.1.12",
|
2021-10-12 11:16:52 +00:00
|
|
|
"vue-router": "next"
|
2021-09-20 18:59:49 +00:00
|
|
|
},
|
2021-11-29 11:34:40 +00:00
|
|
|
"packageManager": "yarn@3.1.1",
|
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"
|
2021-10-18 19:31:15 +00:00
|
|
|
}
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|