Drizzle/package.json

41 lines
909 B
JSON
Raw Normal View History

2024-10-04 16:28:03 +02:00
{
"name": "@sharkitek/drizzle",
"version": "1.0.0",
"description": "Drizzle connector for Sharkitek models.",
"repository": "https://code.zeptotech.net/Sharkitek/Drizzle",
"author": {
"name": "Madeorsk",
"email": "madeorsk@protonmail.com"
},
"license": "MIT",
"scripts": {
"build": "tsc && vite build",
"test": "jest"
},
"type": "module",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"drizzle-orm": "^0.33.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3"
},
"peerDependencies": {
"drizzle-orm": "^0.33.0"
},
"packageManager": "yarn@4.5.0"
}