43 lines
932 B
JSON
43 lines
932 B
JSON
{
|
|
"name": "@r-utils/common",
|
|
"version": "1.0.2",
|
|
"private": false,
|
|
"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"
|
|
],
|
|
"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"
|
|
}
|
|
}
|