-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@sebastianwessel/surql-gen",
"private": false,
"version": "2.6.1",
"engines": {
"node": ">=18"
},
"description": "A small tool which generates a typescript client for SurrealDB based on the schema of a given database",
"keywords": ["typescript", "surrealdb", "client", "javascript", "zod", "orm", "database", "generator", "tool"],
"author": {
"name": "Sebastian Wessel",
"url": "https://github.com/sebastianwessel"
},
"repository": {
"type": "git",
"url": "https://github.com/sebastianwessel/surrealdb-client-generator.git"
},
"homepage": "https://github.com/sebastianwessel/surrealdb-client-generator",
"bugs": {
"url": "https://github.com/sebastianwessel/surrealdb-client-generator/issues",
"email": "[email protected]"
},
"license": "MIT",
"files": ["dist"],
"bin": {
"surql-gen": "./dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"build": "node build.mjs",
"lint": "npx @biomejs/biome check --write .",
"test": "vitest --run",
"prepublishOnly": "npm run lint && vitest --no-watch && npm run build",
"postpublish": "npx jsr publish"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.5.1",
"esbuild": "^0.23.1",
"jsr": "^0.13.1",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"commander": "^12.1.0",
"mkdirp": "^3.0.1",
"rimraf": "^6.0.1",
"surrealdb": "^1.0.0-beta.20",
"testcontainers": "^10.12.0",
"zod": "^3.23.8"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.js"
}