-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 797 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 797 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
34
35
36
{
"name": "continuum-memory-mvp",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"continuum": "bin/continuum"
},
"types": "src/sdk.d.ts",
"exports": {
".": {
"types": "./src/sdk.d.ts",
"default": "./src/sdk/index.ts"
}
},
"scripts": {
"continuum": "bun run bin/continuum",
"install:global": "bun link",
"setup": "bun install && bun run install:global",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^14.0.3",
"drizzle-orm": "^0.44.4",
"zod": "^3.24.2",
"yaml": "^2.8.1"
},
"devDependencies": {
"better-sqlite3": "^12.4.1",
"bun-types": "^1.3.8",
"drizzle-kit": "^0.31.4",
"prettier": "^3.8.1",
"typescript": "^5.8.2"
}
}