kantara-db
Version:
Custom SurrealDB SDK for JavaScript.
66 lines (65 loc) • 1.57 kB
JSON
{
"name": "kantara-db",
"version": "1.1.0",
"type": "module",
"license": "Apache-2.0",
"description": "Custom SurrealDB SDK for JavaScript.",
"keywords": [
"surrealdb",
"surrealdb.js",
"javascript",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dodikuswono/surrealdb.js.git"
},
"homepage": "https://github.com/dodikuswono/surrealdb.js",
"packageManager": "^bun@1.1.17",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "latest",
"compare-versions": "^6.1.1",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.21.5",
"esbuild-plugin-tsc": "^0.4.0",
"get-port": "^7.1.0"
},
"peerDependencies": {
"tslib": "^2.6.3",
"typescript": "^5.0.0"
},
"dependencies": {
"@tauri-apps/plugin-http": "^2.2.0",
"isows": "^1.0.6",
"uuidv7": "^1.0.1"
},
"scripts": {
"ts": "tsc --watch --noEmit true --emitDeclarationOnly false",
"quality:check": "biome check .",
"quality:apply": "biome check . --write",
"quality:apply:unsafe": "biome check . --write --unsafe",
"build": "bun run scripts/build.ts",
"jsr": "bun run scripts/jsr.ts"
},
"engines": {
"node": ">=18.0.0"
},
"browser": "./dist/index.bundled.mjs",
"types": "./dist/index.d.ts",
"main": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.bundled.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENCE",
"SECURITY.md"
]
}