Files
penx/packages/api/package.json
2025-04-30 20:27:49 +08:00

41 lines
968 B
JSON

{
"name": "@penx/api",
"version": "0.0.0",
"private": true,
"type": "module",
"module": "index.ts",
"main": "index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./lib/*": "./src/lib/*.ts",
"./types": "./src/types.ts"
},
"scripts": {
"brl": "barrelsby --delete -d ./src",
"clean": "rm -rf .turbo node_modules",
"lint": "eslint . --max-warnings 0"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"devDependencies": {
"@penx/typescript-config": "workspace:*"
},
"dependencies": {
"@penx/db": "workspace:*",
"@penx/libs": "workspace:*",
"@penx/unique-id": "workspace:*",
"@penx/model-type": "workspace:*",
"@penx/constants": "workspace:*",
"@penx/types": "workspace:*",
"@penx/math": "workspace:*",
"@penx/utils": "workspace:*",
"@penx/encryption": "workspace:*",
"bcrypt-edge": "^0.1.0"
},
"peerDependencies": {
"next": "^15.3.0"
}
}