1
0
mirror of https://github.com/theoludwig/kysely-typegen.git synced 2026-05-22 16:23:25 +02:00
Files
kysely-typegen/package.json
T
theoludwig 9df8b6b64a feat: add SQLite support
Adds `KyselyTypegenSQLiteDialect`, exported from `kysely-typegen/sqlite`.
2026-05-22 16:01:01 +02:00

69 lines
1.7 KiB
JSON

{
"name": "kysely-typegen",
"version": "0.0.0-development",
"description": "Generate Kysely type definitions from your database.",
"keywords": [
"kysely"
],
"homepage": "https://github.com/theoludwig/kysely-typegen#readme",
"bugs": {
"url": "https://github.com/theoludwig/kysely-typegen/issues"
},
"license": "MIT",
"author": "Théo LUDWIG <contact@theoludwig.fr>",
"repository": {
"type": "git",
"url": "git+https://github.com/theoludwig/kysely-typegen.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./mysql": "./dist/mysql.mjs",
"./postgres": "./dist/postgres.mjs",
"./sqlite": "./dist/sqlite.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"lint:typescript": "tsc --noEmit",
"lint:oxlint": "oxlint .",
"lint:oxfmt": "oxfmt . --check",
"oxfmt": "oxfmt .",
"test": "node --test",
"build": "tsdown",
"release": "semantic-release"
},
"devDependencies": {
"@testcontainers/mysql": "12.0.0",
"@testcontainers/postgresql": "12.0.0",
"@types/better-sqlite3": "7.6.13",
"@types/node": "25.9.1",
"@types/pg": "8.20.0",
"better-sqlite3": "12.10.0",
"kysely": "0.29.2",
"kysely-postgres-js": "3.0.0",
"mysql2": "3.22.3",
"oxfmt": "0.51.0",
"oxlint": "1.66.0",
"oxlint-tsgolint": "0.23.0",
"pg": "8.21.0",
"postgres": "3.4.9",
"semantic-release": "25.0.3",
"tsdown": "0.22.0",
"typescript": "6.0.3"
},
"peerDependencies": {
"kysely": ">=0.29.0"
},
"engines": {
"node": ">=24.0.0"
}
}