-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3 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
119
{
"name": "sumak",
"version": "0.0.16",
"description": "Type-safe SQL query builder with powerful SQL printers. Zero dependencies, tree-shakeable. Pure TypeScript.",
"keywords": [
"database",
"esm",
"mssql",
"mysql",
"orm",
"postgresql",
"query-builder",
"sql",
"sqlite",
"tree-shakeable",
"type-safe",
"typescript",
"zero-dependency"
],
"homepage": "https://github.com/productdevbook/sumak",
"bugs": {
"url": "https://github.com/productdevbook/sumak/issues"
},
"license": "MIT",
"author": "productdevbook",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbook/sumak.git"
},
"funding": "https://github.com/sponsors/productdevbook",
"bin": {
"sumak": "./bin/sumak.mjs"
},
"files": [
"dist",
"bin"
],
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./pg": {
"types": "./dist/pg.d.mts",
"default": "./dist/pg.mjs"
},
"./mssql": {
"types": "./dist/mssql.d.mts",
"default": "./dist/mssql.mjs"
},
"./mysql": {
"types": "./dist/mysql.d.mts",
"default": "./dist/mysql.mjs"
},
"./sqlite": {
"types": "./dist/sqlite.d.mts",
"default": "./dist/sqlite.mjs"
},
"./schema": {
"types": "./dist/schema.d.mts",
"default": "./dist/schema.mjs"
},
"./otel": {
"types": "./dist/otel.d.mts",
"default": "./dist/otel.mjs"
},
"./cli": {
"types": "./dist/cli/index.d.mts",
"default": "./dist/cli/index.mjs"
},
"./drivers/pg": {
"types": "./dist/drivers/pg.d.mts",
"default": "./dist/drivers/pg.mjs"
},
"./drivers/mysql2": {
"types": "./dist/drivers/mysql2.d.mts",
"default": "./dist/drivers/mysql2.mjs"
},
"./drivers/better-sqlite3": {
"types": "./dist/drivers/better-sqlite3.d.mts",
"default": "./dist/drivers/better-sqlite3.mjs"
},
"./drivers/mssql": {
"types": "./dist/drivers/mssql.d.mts",
"default": "./dist/drivers/mssql.mjs"
}
},
"scripts": {
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt --check .",
"lint:fix": "oxlint . --fix && oxfmt .",
"fmt": "oxfmt .",
"test": "pnpm lint && pnpm typecheck && vitest run",
"typecheck": "tsgo --noEmit",
"release": "pnpm test && pnpm build && bumpp --commit --tag --push --all",
"prepack": "pnpm build"
},
"devDependencies": {
"@casl/ability": "^6.8.1",
"@electric-sql/pglite": "^0.4.5",
"@typescript/native-preview": "7.0.0-dev.20260516.1",
"@vitest/coverage-v8": "^4.1.6",
"better-sqlite3": "^12.10.0",
"bumpp": "^11.1.0",
"drizzle-orm": "^0.45.2",
"fast-check": "^4.8.0",
"kysely": "^0.29.2",
"mitata": "^1.0.34",
"obuild": "^0.4.35",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}