forked from google/sqlcommenter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
{
"name": "@query-doctor/sqlcommenter-drizzle",
"version": "0.1.1",
"description": "SQLCommenter patch for drizzle-orm",
"main": "dist/cjs/index.js",
"type": "module",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./http": {
"import": {
"types": "./dist/esm/http.d.ts",
"default": "./dist/esm/http.js"
},
"require": {
"types": "./dist/cjs/http.d.ts",
"default": "./dist/cjs/http.js"
}
}
},
"devDependencies": {
"@electric-sql/pglite": "^0.3.10",
"@types/node": "^20.19.34",
"hono": "^4.9.8",
"postgres": "^3.4.7",
"rewiremock": "^3.14.3",
"tsx": "^4.20.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@opentelemetry/api": "~1.9.0"
},
"peerDependencies": {
"@opentelemetry/core": ">=1.0.0",
"drizzle-orm": ">=0.35.0"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "node --import=tsx --test test/**/*.spec.ts",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/query-doctor/sqlcommenter.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "Query Doctor",
"license": "Apache-2.0",
"packageManager": "pnpm@10.16.1+sha512.0e155aa2629db8672b49e8475da6226aa4bdea85fdcdfdc15350874946d4f3c91faaf64cbdc4a5d1ab8002f473d5c3fcedcd197989cf0390f9badd3c04678706",
"module": "dist/esm/index.js"
}