Nuxt/package.json

70 lines
2.3 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt-framework",
"license": "MIT",
"type": "module",
2021-03-18 14:26:41 +00:00
"workspaces": [
2021-04-20 12:16:09 +00:00
"packages/*",
"examples/*/*",
"test/fixtures/*",
"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",
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
"lint:docs": "./node_modules/.bin/markdownlint ./ && case-police '**/*.md'",
"nuxi": "./node_modules/.bin/nuxi",
"nuxt": "./node_modules/.bin/nuxi",
"play": "echo use yarn dev && exit 1",
"dev": "yarn run nuxi dev playground",
"dev:build": "yarn run nuxi build playground",
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
"stub": "lerna run prepack -- --stub",
"test:fixtures": "yarn nuxi prepare test/fixtures/basic && JITI_ESM_RESOLVE=1 vitest --dir test",
"test:fixtures:webpack": "TEST_WITH_WEBPACK=1 yarn test:fixtures",
"test:types": "yarn run nuxi prepare test/fixtures/basic && cd test/fixtures/basic && npx vue-tsc --noEmit",
"test:unit": "JITI_ESM_RESOLVE=1 yarn vitest --dir packages",
"version": "yarn && git add yarn.lock"
2021-03-18 14:26:41 +00:00
},
2021-04-09 13:48:39 +00:00
"resolutions": {
"@nuxt/ui": "npm:@nuxt/ui-edge@latest",
"jiti": "^1.13.0",
"nitropack-dev": "link:../nitropack",
"nuxt3": "workspace:./packages/nuxt3",
"vite": "^2.9.1",
"unbuild": "^0.7.2"
2021-04-09 13:48:39 +00:00
},
2021-03-18 14:26:41 +00:00
"devDependencies": {
"@iconify-json/carbon": "^1.1.3",
"@nuxtjs/eslint-config": "^9.0.0",
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@types/jsdom": "^16",
"@types/node": "^16.11.26",
"@types/object-hash": "^2",
"@unocss/reset": "^0.30.11",
"case-police": "^0.5.1",
"esbuild": "^0.14.31",
"eslint": "^8.12.0",
"eslint-plugin-jsdoc": "^38.1.6",
"execa": "^6.1.0",
"expect-type": "^0.13.0",
"globby": "^13.1.1",
"jiti": "^1.13.0",
2021-03-18 14:26:41 +00:00
"lerna": "^4.0.0",
"markdownlint-cli": "^0.31.1",
"miniflare": "^1.4.1",
"object-hash": "^3.0.0",
"pathe": "^0.2.0",
"typescript": "^4.6.3",
"unbuild": "^0.7.2",
"vitest": "^0.8.4",
"vue-router": "^4.0.14",
"vue-tsc": "^0.33.9"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
},
"packageManager": "yarn@3.2.0"
2021-03-18 14:26:41 +00:00
}