-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 904 Bytes
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
{
"name": "thaletto",
"private": true,
"workspaces": ["packages/*"],
"version": "1.0.1",
"type": "module",
"license": "MIT",
"description": "The ORM for Vector Databases",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"example": "bun run example/index.ts",
"docs": "bun run --cwd docs dev",
"build": "bun run --cwd docs build",
"docs:build": "bun run --cwd docs build"
},
"devDependencies": {
"@thaletto/cortex": "workspace:*",
"@thaletto/zvec": "workspace:*",
"@effect/language-service": "^0.87.2",
"@effect/platform-bun": "^4.0.0-beta.107",
"@effect/platform-node": "^4.0.0-beta.107",
"@effect/vitest": "^4.0.0-beta.107",
"@types/bun": "1.3.14",
"bun": "^1.3.14",
"effect": "^4.0.0-beta.107",
"vitest": "^4.1.6"
},
"peerDependencies": {
"typescript": "^6.0.3",
"effect": "^4.0.0-beta.66"
}
}