monorepo/packages/utils/package.json

37 lines
827 B
JSON
Raw Normal View History

2024-06-25 21:59:50 +08:00
{
2025-04-30 19:50:16 +08:00
"name": "@3rapp/utils",
2025-05-29 20:00:42 +08:00
"type": "module",
2025-04-30 19:50:16 +08:00
"exports": {
2025-05-29 20:00:42 +08:00
".": {
"import": {
"types": "./dist/es/index.d.ts",
"default": "./dist/es/index.js"
}
2024-06-25 21:59:50 +08:00
}
2025-04-30 19:50:16 +08:00
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "bunchee -w --tsconfig tsconfig.build.json",
"build": "bunchee --tsconfig tsconfig.build.json",
"lint": "eslint . --ext ts,tsx"
},
"dependencies": {
"dayjs": "^1.11.13",
"deepmerge": "^4.3.1",
"lodash": "catalog:"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
2025-05-18 19:59:47 +08:00
"@types/lodash": "catalog:",
2025-04-30 19:50:16 +08:00
"@types/node": "^22.8.6",
"bunchee": "^5.6.1",
"typescript": "^5.6.3"
}
2024-06-25 21:59:50 +08:00
}