rnx-kit/package.json

80 строки
2.1 KiB
JSON

{
"name": "rnx-kit",
"version": "0.1.0",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"author": "Jason Morse <jasonmo@microsoft.com>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rnx-kit.git"
},
"scripts": {
"build": "nx run-many --target build --all",
"build:ci": "nx affected --target test",
"build:ci:all": "nx run-many --target test --all",
"build-scope": "nx build",
"bundle": "nx run-many --target bundle --all",
"bundle+esbuild": "nx run-many --target bundle+esbuild --all",
"change": "changeset add",
"change:check": "changeset status",
"ci": "yarn --prefer-offline --frozen-lockfile --non-interactive",
"clean": "nx clear-cache",
"depcheck": "nx run-many --target depcheck --all",
"format": "nx run-many --target format --all",
"lint": "nx run-many --target lint --all",
"new-package": "node scripts/new-package.js",
"publish:changesets": "changeset publish",
"rnx-align-deps": "yarn build-scope align-deps && scripts/rnx-align-deps.js",
"test": "nx run-many --target test --output-style stream --all",
"update-readme": "nx run-many --target update-readme --all",
"version:changesets": "changeset version"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@changesets/cli": "^2.22.0",
"@rnx-kit/align-deps": "*",
"nx": "^15.0.1",
"prettier": "^2.3.0"
},
"engines": {
"node": ">=14.18"
},
"resolutions": {
"eslint-plugin-react": "^7.26.0",
"micromatch": "^4.0.0",
"minimatch": "^3.0.5",
"nx/chalk": "^4.1.0",
"nx/fast-glob": "^3.2.7",
"nx/glob": "^7.1.4",
"nx/semver": "^7.3.4",
"shell-quote": "^1.7.3"
},
"workspaces": {
"packages": [
"incubator/*",
"packages/@types/*",
"packages/*",
"scripts"
]
},
"eslintConfig": {
"extends": "@rnx-kit/eslint-config"
},
"prettier": {
"overrides": [
{
"files": [
"*.md",
"*.mdx"
],
"options": {
"proseWrap": "always"
}
}
]
}
}