r-util-js/packages/common/package.json

46 lines
1006 B
JSON
Raw Normal View History

2026-03-16 17:58:57 +08:00
{
"name": "@r-utils/common",
2026-03-17 17:36:55 +08:00
"version": "1.0.2",
2026-03-17 14:45:00 +08:00
"private": false,
2026-03-16 17:58:57 +08:00
"description": "js通用工具库",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"keywords": [
"utils",
"common"
],
"publishConfig": {
"registry": "http://npm.nps.yunvip123.cn"
},
2026-03-16 17:58:57 +08:00
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"lint": "eslint --ext .js,ts --fix src",
"format": "prettier --write src",
"release": "standard-version",
"commit": "cz",
"lint-staged": "lint-staged",
"test": "jest"
},
"dependencies": {
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@types/lodash": "^4.17.16",
"@types/lodash-es": "^4.17.12"
}
}