@handfish/drizzle-effect
Version:
Generate `effect` schemas from Drizzle ORM schemas
83 lines • 1.81 kB
JSON
{
"name": "@handfish/drizzle-effect",
"version": "0.0.17",
"description": "Generate `effect` schemas from Drizzle ORM schemas",
"type": "module",
"exports": {
".": {
"import": {
"types": "./index.d.mts",
"default": "./index.mjs"
},
"require": {
"types": "./index.d.cjs",
"default": "./index.cjs"
},
"types": "./index.d.ts",
"default": "./index.mjs"
}
},
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./index.d.ts",
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/drizzle-team/drizzle-orm.git"
},
"ava": {
"files": [
"tests/**/*.test.ts",
"!tests/bun/**/*"
],
"extensions": {
"ts": "module"
}
},
"keywords": [
"effect",
"effect-ts",
"validate",
"validation",
"schema",
"drizzle",
"orm",
"pg",
"mysql",
"postgresql",
"postgres",
"sqlite",
"database",
"sql",
"typescript",
"ts"
],
"author": "Drizzle Team",
"license": "MIT",
"peerDependencies": {
"drizzle-orm": ">=0.23.13",
"effect": ">=3.10.16"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.15.10",
"cpy": "^10.1.0",
"drizzle-orm": "link:../drizzle-orm/dist",
"effect": "^3.14.13",
"rimraf": "^5.0.0",
"rollup": "^3.20.7",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"zx": "^7.2.2"
},
"scripts": {
"build": "tsx scripts/build.ts",
"b": "pnpm build",
"test:types": "cd tests && tsc",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"test": "vitest run"
}
}