-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
69
70
71
72
{
"name": "@stacksjs/database",
"type": "module",
"version": "0.70.23",
"description": "The Stacks database integration.",
"author": "Chris Breuer",
"contributors": ["Chris Breuer <chris@stacksjs.com>"],
"license": "MIT",
"funding": "https://github.com/sponsors/chrisbbreuer",
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/database#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/stacks.git",
"directory": "./storage/framework/core/database"
},
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": [
"database",
"orm",
"sqlite",
"mysql",
"postgres",
"bun",
"stacks"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["README.md", "dist"],
"scripts": {
"build": "bun build.ts",
"typecheck": "bun tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.876.0",
"@aws-sdk/lib-dynamodb": "^3.1000.0",
"bun-query-builder": "^0.1.13",
"dynamodb-toolbox": "^2.8.0",
"pg": "^8.19.0"
},
"optionalDependencies": {
"mysql2": "^3.18.2"
},
"devDependencies": {
"@stacksjs/cli": "workspace:*",
"@stacksjs/config": "workspace:*",
"@stacksjs/logging": "workspace:*",
"@stacksjs/router": "workspace:*",
"better-dx": "^0.2.5",
"@stacksjs/path": "workspace:*",
"@stacksjs/query-builder": "workspace:*",
"@stacksjs/storage": "workspace:*",
"@stacksjs/strings": "workspace:*",
"@stacksjs/utils": "workspace:*",
"@types/tar": "^6.1.13",
"debug": "^4.4.3",
"dynamodb-tooling": "^0.3.2",
"mkdirp": "^3.0.1",
"tar": "^7.5.9"
}
}