-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 955 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 955 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
37
38
39
40
41
42
{
"name": "ai-octet-stream",
"version": "0.0.3",
"description": "Lightweight SDK for streaming AI responses with a compact binary protocol.",
"keywords": [
"ai",
"stream",
"sdk"
],
"type": "module",
"main": "index.mjs",
"module": "index.mjs",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "bun build index.ts --outfile=index.mjs --format=esm --target=browser",
"test": "bun test"
},
"exports": {
".": {
"import": "./index.mjs",
"node": "./index.mjs",
"types": "./index.d.ts"
}
},
"devDependencies": {
"@types/bun": "^1.3.12"
},
"files": [
"*.d.ts",
"*.mjs"
],
"author": "Je Xia <i@jex.me>",
"homepage": "https://github.com/ije/ai-octet-stream#readme",
"bugs": {
"url": "https://github.com/ije/ai-octet-stream/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ije/ai-octet-stream.git"
},
"license": "MIT"
}