-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "@systemfsoftware/neon-serverless-adapter",
"version": "0.3.0",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@systemfsoftware/source": "./src/mod.ts",
"types": "./dist/esm/mod.d.ts",
"default": "./dist/esm/mod.js"
}
}
},
"module": "./dist/esm/mod.js",
"files": [
"dist"
],
"tshy": {
"dialects": [
"esm"
],
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/mod.ts"
},
"sourceDialects": [
"@systemfsoftware/source"
]
},
"scripts": {
"prepare": "pnpm turbo build",
"clean": "rimraf dist .tshy .tshy-build",
"build": "pnpm run clean && tshy"
},
"dependencies": {
"@neondatabase/serverless": "^0.9.5"
},
"devDependencies": {
"effect": "^3.13.3",
"drizzle-orm": "^0.34.1",
"@systemfsoftware/api-extractor": "workspace:^"
},
"peerDependencies": {
"@effect/platform": "^0.69.9",
"drizzle-orm": "^0.34.1",
"effect": "^3.13.3"
}
}