-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 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
{
"version": "0.2.7",
"name": "drizzle-transaction-context",
"module": "index.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"devDependencies": {
"@electric-sql/pglite": "^0.3.13",
"@faker-js/faker": "^10.1.0",
"@types/bun": "latest",
"bun": "^1.3.3",
"drizzle-kit": "^0.31.6",
"drizzle-seed": "^0.3.1",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5"
},
"peerDependencies": {
"drizzle-orm": "^0.44.7"
},
"scripts": {
"clean": "rm -rf ./dist && mkdir dist",
"compile": "tsc -p tsconfig.build.json && bun run compile.ts",
"docs": "typedoc",
"stage": "cd staging && npm i && npm test && cd ..",
"all": "bun clean && bun compile && bun test",
"test": "bun test"
},
"keywords": [
"drizzle",
"orm",
"database"
],
"author": "Nick Deis <nickjdeis@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/nickdeis/drizzle-transaction-context.git"
},
"license": "MIT",
"engines": {
"node": ">=18"
}
}