-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1006 Bytes
/
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
{
"name": "hive-tools-database",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": "paroxity",
"scripts": {
"build": "tsc"
},
"dependencies": {
"drizzle-kit": "^0.21.4",
"drizzle-orm": "^0.30.10",
"drizzle-zod": "^0.5.1",
"postgres": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.12",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./database": {
"types": "./dist/lib/database.d.ts",
"default": "./dist/lib/database.js"
},
"./schema": {
"types": "./dist/lib/schema.d.ts",
"default": "./dist/lib/schema.js"
},
"./types": {
"types": "./dist/lib/types.d.ts",
"default": "./dist/lib/types.js"
}
}
}