-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 898 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
45
46
47
{
"name": "drizzle-toolbelt",
"version": "1.2.0",
"description": "Set of tools for drizzle-orm.",
"scripts": {
"build": "tsup --dts --dts-resolve",
"test": "bun test src",
"check": "bunx @biomejs/biome check --apply ./src",
"release": "changeset publish"
},
"keywords": [
"drizzle",
"orm",
"sql",
"sqlite",
"postgres",
"pg",
"postgresql",
"mysql",
"database",
"db"
],
"author": "fredericoo",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@changesets/cli": "^2.27.1",
"@types/bun": "^1.1.0",
"@types/lodash": "^4.17.0",
"lodash": "^4.17.21",
"tsup": "^8.0.2",
"type-testing": "^0.2.0",
"typescript": "^5.4.5"
}
}