-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.3 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
{
"name": "@buildship-ai/agent",
"description": "BuildShip Agent SDK — core + React bindings.",
"version": "0.0.8",
"author": "BuildShip",
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/react": "^18.2.14",
"tsup": "^8.5.1",
"typescript": "5.8.3",
"vitest": "^4.0.18"
},
"exports": {
"./core": {
"development": "./src/core/index.ts",
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js",
"require": "./dist/core/index.cjs"
},
"./react": {
"development": "./src/react/index.ts",
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"agent",
"ai",
"buildship",
"react",
"streaming"
],
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"test": "vitest run --exclude 'tests/e2e/**'",
"test:e2e": "vitest run tests/e2e"
},
"type": "module",
"typesVersions": {
"*": {
"core": [
"./dist/core/index.d.ts"
],
"react": [
"./dist/react/index.d.ts"
]
}
}
}