forked from Effect-TS/effect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.77 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
{
"name": "@effect/sql-sqlite-bun",
"version": "0.45.1",
"type": "module",
"license": "MIT",
"description": "A SQLite toolkit for Effect",
"homepage": "https://effect.website",
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/effect.git",
"directory": "packages/sql-sqlite-bun"
},
"bugs": {
"url": "https://github.com/Effect-TS/effect/issues"
},
"tags": [
"typescript",
"sql",
"database"
],
"keywords": [
"typescript",
"sql",
"database"
],
"publishConfig": {
"access": "public",
"provenance": true,
"directory": "dist",
"linkDirectory": false
},
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./internal/*": null
},
"scripts": {
"codegen": "build-utils prepare-v3",
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-v3",
"build-esm": "tsc -b tsconfig.build.json",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"check": "tsc -b tsconfig.json",
"test": "vitest",
"coverage": "vitest --coverage"
},
"devDependencies": {
"@effect-native/libcrsql": "^0.16.303",
"@effect/experimental": "workspace:^",
"@effect/platform": "workspace:^",
"@effect/platform-bun": "workspace:^",
"@effect/sql": "workspace:^",
"@types/bun": "^1.2.2",
"effect": "workspace:^"
},
"peerDependencies": {
"@effect/experimental": "workspace:^",
"@effect/platform": "workspace:^",
"@effect/sql": "workspace:^",
"effect": "workspace:^"
}
}