-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@enalmada/drizzle-helpers",
"version": "0.0.18",
"scripts": {
"build": "bun build:clear && bun build:script && bun build:declaration",
"build:clear": "rm -rf dist",
"build:declaration": "tsc --emitDeclarationOnly",
"build:script": "cross-env NODE_ENV=production bun build.ts",
"dev": "cd website && bun run dev",
"dev:install": "bun install",
"lint": "biome check --fix --unsafe",
"pre-commit": "bun lint-staged",
"prepare": "husky",
"release": "bun run build && bunx changeset publish",
"test": "bun run test:unit",
"test:unit": "cross-env NODE_ENV=test vitest",
"type-check": "bun --bun tsc --noEmit"
},
"dependencies": {
"dotenv": "16.4.7",
"dotenv-cli": "7.4.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.10",
"@enalmada/bun-externals": "0.0.7",
"@scaleway/changesets-renovate": "2.1.2",
"@types/node": "22.10.1",
"cross-env": "7.0.3",
"drizzle-orm": "0.38.0",
"fixpack": "4.0.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"postgres": "3.4.5",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"peerDependencies": {
"drizzle-orm": ">=0.38",
"postgres": ">=3.4.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adam Lane",
"description": "drizzle postgres utilities for connection, migration, and relational query simplification",
"keywords": [
"drizzle ORM postgres",
"drizzle connect postgres",
"drizzle migrate postgres"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Enalmada/drizzle-helpers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enalmada/drizzle-helpers.git"
},
"homepage": "https://github.com/Enalmada/drizzle-helpers",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"packageManager": "bun@1.1.38",
"trustedDependencies": ["@biomejs/biome"]
}