UNPKG

defrost-db

Version:
40 lines 847 B
{ "name": "defrost-db", "version": "1.0.3", "description": "Database client for Defrost protocol", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*", "prisma/**/*" ], "dependencies": { "@prisma/client": "^6.6.0" }, "devDependencies": { "@types/node": "^18.0.0", "prisma": "^6.6.0", "typescript": "^4.8.0" }, "peerDependencies": { "prisma": "^6.6.0" }, "repository": { "type": "git", "url": "git+https://github.com/yourusername/defrost-db.git" }, "keywords": [ "defrost", "database", "prisma" ], "author": "", "license": "MIT", "scripts": { "build": "tsc", "postinstall": "prisma generate", "start": "node lib/index.js", "lint": "eslint src --ext .ts,.js", "format": "prettier --write \"src/**/*.{ts,js,json}\"" } }