ronin
Version:
Access your RONIN database via TypeScript.
87 lines (86 loc) • 1.85 kB
JSON
{
"name": "ronin",
"version": "6.8.0",
"type": "module",
"description": "Access your RONIN database via TypeScript.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ronin": "./dist/bin/index.js"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./schema": {
"import": "./dist/schema/index.js",
"types": "./dist/schema/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"types": [
"dist/types/index.d.ts"
],
"schema": [
"dist/schema/index.d.ts"
],
"utils": [
"dist/utils/index.d.ts"
]
}
},
"scripts": {
"lint": "bun run --bun lint:tsc && bun run --bun lint:biome",
"lint:biome": "biome check",
"lint:tsc": "tsc --pretty",
"format": "biome format --write",
"test": "bun test",
"build": "tsup",
"dev": "tsup --watch",
"prepare": "bun run build"
},
"keywords": [
"ronin",
"client",
"database",
"orm",
"edge",
"serverless"
],
"author": "ronin",
"license": "Apache-2.0",
"repository": "ronin-co/client",
"homepage": "https://ronin.co/docs/typescript-client",
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"@ronin/cli": "0.3.20",
"@ronin/compiler": "0.18.10",
"@ronin/engine": "0.1.23",
"@ronin/syntax": "0.2.44"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.2.4",
"tsup": "8.5.0",
"typescript": "5.8.3"
}
}