2023-04-20 14:28:29 +08:00
|
|
|
{
|
2026-03-16 17:58:57 +08:00
|
|
|
"name": "@r-utils/root",
|
2026-04-20 17:55:33 +08:00
|
|
|
"version": "1.3.0",
|
2026-03-16 17:58:57 +08:00
|
|
|
"private": true,
|
|
|
|
|
"description": "前端工具库",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"vue",
|
|
|
|
|
"js",
|
|
|
|
|
"utils",
|
|
|
|
|
"tools"
|
|
|
|
|
],
|
2026-03-17 10:24:02 +08:00
|
|
|
"publishConfig": {
|
2026-03-17 14:42:03 +08:00
|
|
|
"registry": "http://npm.nps.yunvip123.cn"
|
2026-03-17 10:24:02 +08:00
|
|
|
},
|
2026-03-16 17:58:57 +08:00
|
|
|
"author": {
|
|
|
|
|
"name": "CodiceFabbrica",
|
|
|
|
|
"email": "randy1924@163.com",
|
|
|
|
|
"url": "https://gitee.com/codice_fabbrica"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://gitee.com/codice_fabbrica/r-util-js",
|
|
|
|
|
"repository": {
|
|
|
|
|
"url": "https://gitee.com/codice_fabbrica/r-util-js.git",
|
|
|
|
|
"type": "git"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://gitee.com/codice_fabbrica/r-util-js/issues"
|
|
|
|
|
},
|
|
|
|
|
"license": "ISC",
|
|
|
|
|
"engines": {
|
2026-03-26 08:56:15 +08:00
|
|
|
"node": ">=18.12.0",
|
|
|
|
|
"pnpm": ">=10.0.0"
|
2026-03-16 17:58:57 +08:00
|
|
|
},
|
2026-03-26 08:56:15 +08:00
|
|
|
"packageManager": "pnpm@10.32.1",
|
2026-03-16 17:58:57 +08:00
|
|
|
"type": "module",
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"packages/*"
|
|
|
|
|
],
|
2023-04-20 14:28:29 +08:00
|
|
|
"scripts": {
|
2026-03-26 08:56:15 +08:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2026-05-28 11:30:35 +08:00
|
|
|
"build": "turbo run build --filter=./packages/*",
|
|
|
|
|
"build:watch": "turbo run watch --filter=./packages/* --parallel",
|
|
|
|
|
"typecheck": "turbo run typecheck --filter=./packages/* --concurrency=1",
|
2023-04-20 14:28:29 +08:00
|
|
|
"prepare": "husky install",
|
2026-05-28 11:30:35 +08:00
|
|
|
"lint": "turbo run lint --filter=./packages/*",
|
|
|
|
|
"format": "turbo run format --filter=./packages/*",
|
|
|
|
|
"changeset": "changeset",
|
|
|
|
|
"release": "changeset version",
|
|
|
|
|
"changeset:status": "changeset status --verbose",
|
|
|
|
|
"release:check": "pnpm test && pnpm build",
|
|
|
|
|
"release:publish": "changeset publish",
|
|
|
|
|
"release:all": "pnpm release:check && pnpm release && pnpm release:publish",
|
2023-04-20 14:28:29 +08:00
|
|
|
"commit": "cz",
|
|
|
|
|
"lint-staged": "lint-staged",
|
2026-04-20 17:54:26 +08:00
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
|
|
|
|
"test:coverage": "vitest run --coverage"
|
2023-04-20 14:28:29 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-28 11:30:35 +08:00
|
|
|
"@changesets/cli": "^2.31.0",
|
2026-03-17 14:42:03 +08:00
|
|
|
"@commitlint/config-conventional": "^20.5.0",
|
|
|
|
|
"@eslint/js": "^10.0.1",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
|
|
|
"@typescript-eslint/parser": "^8.57.1",
|
2026-04-20 17:54:26 +08:00
|
|
|
"@vitest/coverage-v8": "catalog:",
|
2026-03-17 14:42:03 +08:00
|
|
|
"commitizen": "^4.3.1",
|
2026-03-17 17:36:55 +08:00
|
|
|
"cz-git": "^1.12.0",
|
2026-03-17 14:42:03 +08:00
|
|
|
"eslint": "^10.0.3",
|
|
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2023-04-20 14:28:29 +08:00
|
|
|
"eslint-define-config": "^1.18.0",
|
2026-03-26 08:56:15 +08:00
|
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
|
|
|
"eslint-plugin-import-x": "^4.16.2",
|
2026-03-17 14:42:03 +08:00
|
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
|
|
|
"globals": "^17.4.0",
|
2026-03-16 17:58:57 +08:00
|
|
|
"husky": "^9.1.7",
|
2026-03-17 17:36:55 +08:00
|
|
|
"inquirer": "^9.3.8",
|
2026-03-17 14:42:03 +08:00
|
|
|
"lint-staged": "^16.4.0",
|
|
|
|
|
"prettier": "^3.8.1",
|
2026-03-16 17:58:57 +08:00
|
|
|
"tslib": "^2.8.1",
|
2026-05-28 11:30:35 +08:00
|
|
|
"turbo": "^2.9.6",
|
2026-03-17 14:42:03 +08:00
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"typescript-eslint": "^8.57.1",
|
|
|
|
|
"vite": "^8.0.0",
|
2026-05-28 11:30:35 +08:00
|
|
|
"vite-plugin-dts": "^4.5.4",
|
|
|
|
|
"vitest": "catalog:"
|
2026-03-16 17:58:57 +08:00
|
|
|
},
|
|
|
|
|
"overrides": {
|
|
|
|
|
"@types/lodash": "4.17.16",
|
|
|
|
|
"dayjs": "1.11.13",
|
|
|
|
|
"lodash": "4.17.21",
|
|
|
|
|
"lodash-es": "4.17.21"
|
2023-04-20 14:28:29 +08:00
|
|
|
}
|
|
|
|
|
}
|