-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "@blink.so/api",
"description": "The internal module for the Blink API.",
"private": true,
"type": "module",
"main": "./src/client.node.ts",
"browser": "./src/client.browser.ts",
"exports": {
".": {
"browser": "./src/client.browser.ts",
"default": "./src/client.node.ts"
},
"./react": {
"browser": "./src/react/index.ts",
"default": "./src/react/index.ts"
},
"./server": "./src/server.ts",
"./test": "./src/test.ts",
"./agents/me": "./src/routes/agents/me/me.client.ts",
"./agents/me/server": "./src/routes/agents/me/me.server.ts",
"./util/chat": "./src/util/chat.ts"
},
"scripts": {
"build": "tsdown",
"pack": "bun run build && cd dist && npm pack",
"typecheck": "tsgo --noEmit",
"publish": "bun run pack && cd dist && npm publish"
},
"devDependencies": {
"@blink-sdk/events": "workspace:*",
"@bufbuild/protobuf": "^2.9.0",
"@testing-library/react": "^16.3.0",
"eventsource-parser": "^3.0.6",
"happy-dom": "^18.0.1",
"hono": "^4.9.7",
"msw": "^2.12.1",
"react": "19.1.2",
"react-dom": "19.1.2",
"tsdown": "^0.15.1",
"zod": "^4.1.9",
"zod-validation-error": "^4.0.1"
},
"peerDependencies": {
"ai": "^5.0.0",
"zod": ">= 4",
"react": ">= 18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"optionalDependencies": {
"@blink-sdk/compute-protocol": ">= 0.0.2"
},
"dependencies": {
"bcrypt-ts": "^7.1.0",
"next-auth": "5.0.0-beta.30"
}
}