-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.13 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
73
74
75
76
{
"name": "polygres-sdk-effect",
"version": "0.3.0",
"description": "Effect-native TypeScript SDK for the Polygres Runtime API",
"type": "module",
"packageManager": "bun@1.4.0",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"scripts": {
"build": "bun run clean && bunx tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"lint": "oxlint --deny-warnings .",
"typecheck": "tsc --noEmit",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "bun test",
"contracts:check": "bun run scripts/verify-contract.ts",
"contracts:surface": "bun run scripts/generate-effect-surface.ts",
"contracts:refresh": "bun run scripts/refresh-contract.ts",
"catalog:generate": "bun run scripts/generate-error-catalog.ts",
"package:check": "bun run scripts/verify-package.ts",
"prepack": "bun run build",
"check": "bun run contracts:check && bun run lint && bun run format:check && bun run typecheck && bun test && bun run build && bun run package:check",
"live:readiness": "bun run scripts/readiness.ts",
"live:context": "bun run scripts/context-capabilities.ts"
},
"keywords": [
"effect",
"polygres",
"postgresql",
"graph-search",
"vector-search",
"hybrid-search"
],
"author": "Patrick Hall <phall1@users.noreply.github.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/phall1/polygres-sdk-effect.git"
},
"bugs": {
"url": "https://github.com/phall1/polygres-sdk-effect/issues"
},
"homepage": "https://github.com/phall1/polygres-sdk-effect#readme",
"engines": {
"bun": ">=1.4.0",
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"effect": ">=4.0.0-rc.112 <5"
},
"devDependencies": {
"@types/bun": "1.4.0",
"effect": "4.0.0-rc.112",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"oxlint-tsgolint": "7.0.2001",
"typescript": "7.0.2"
}
}