-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.04 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.04 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@a2lix/schemql",
"version": "0.5.2",
"description": "A lightweight TypeScript library that enhances your SQL workflow by combining raw SQL with targeted type safety and schema validation",
"license": "MIT",
"keywords": [
"sql",
"typescript",
"database",
"query",
"schema",
"validation",
"type-safe",
"typesafe",
"autocomplete",
"raw-sql",
"zod",
"arktype",
"standard-schema",
"dbms-agnostic",
"lightweight",
"sql-first",
"query-builder",
"json",
"jsonpath"
],
"author": {
"name": "David ALLIX",
"url": "https://a2lix.fr"
},
"homepage": "https://github.com/a2lix/schemql",
"repository": {
"type": "git",
"url": "git+https://github.com/a2lix/schemql.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./adapters/base-error": {
"import": {
"types": "./dist/adapters/baseAdapterError.d.mts",
"default": "./dist/adapters/baseAdapterError.mjs"
},
"require": {
"types": "./dist/adapters/baseAdapterError.d.cts",
"default": "./dist/adapters/baseAdapterError.cjs"
}
},
"./adapters/better-sqlite3": {
"import": {
"types": "./dist/adapters/betterSqlite3Adapter.d.mts",
"default": "./dist/adapters/betterSqlite3Adapter.mjs"
},
"require": {
"types": "./dist/adapters/betterSqlite3Adapter.d.cts",
"default": "./dist/adapters/betterSqlite3Adapter.cjs"
}
},
"./adapters/d1": {
"import": {
"types": "./dist/adapters/d1Adapter.d.mts",
"default": "./dist/adapters/d1Adapter.mjs"
},
"require": {
"types": "./dist/adapters/d1Adapter.d.cts",
"default": "./dist/adapters/d1Adapter.cjs"
}
},
"./adapters/node-sqlite": {
"import": {
"types": "./dist/adapters/nodeSqliteAdapter.d.mts",
"default": "./dist/adapters/nodeSqliteAdapter.mjs"
},
"require": {
"types": "./dist/adapters/nodeSqliteAdapter.d.cts",
"default": "./dist/adapters/nodeSqliteAdapter.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"biome": "biome check --write ./src ./tests",
"biome:ci": "biome ci ./src ./tests",
"test": "tsx --test './tests/**/*.test.ts'",
"build": "pkgroll --clean-dist --minify --src src/"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.9",
"@cloudflare/workers-types": "^4.20251011.0",
"@types/node": "^24.10.4",
"arktype": "^2.1.29",
"better-sqlite3": "^12.5.0",
"pkgroll": "^2.21.4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"zod": "^4.2.1"
},
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3"]
}
}