-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.22 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "formagent-sdk",
"version": "0.4.0",
"description": "FormAgent SDK - AI Agent framework with streaming support, tool execution, skill management, and hooks system",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"formagent": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./types": "./dist/types/index.js",
"./tools": "./dist/tools/index.js",
"./skills": "./dist/skills/loader.js",
"./hooks": "./dist/hooks/index.js",
"./session": "./dist/session/index.js",
"./llm": "./dist/llm/index.js",
"./cost": "./dist/cost/index.js",
"./prompt": "./dist/prompt/index.js",
"./cli": "./dist/cli/index.js"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run build:sdk && bun run build:cli",
"build:sdk": "bun build ./src/index.ts --outdir ./dist --target node",
"build:cli": "bun build ./src/cli/index.ts --outdir ./dist/cli --target node && chmod +x ./dist/cli/index.js",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"dev": "bun build ./src/index.ts --outdir ./dist --target node --watch",
"typecheck": "tsc --noEmit",
"test": "bun test",
"clean": "rm -rf dist",
"prepare": "bun run build",
"prepublishOnly": "bun run clean && bun run build",
"cli": "bun run ./src/cli/index.ts"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/node": "^25.0.5",
"bun-types": "^1.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"zod": "^3.22.0"
},
"keywords": [
"ai",
"agent",
"llm",
"claude",
"anthropic",
"openai",
"tools",
"streaming",
"typescript",
"skills",
"hooks",
"formagent-sdk"
],
"author": "FormAgent Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/formagent/formagent-sdk"
},
"homepage": "https://github.com/formagent/formagent-sdk#readme",
"bugs": {
"url": "https://github.com/formagent/formagent-sdk/issues"
},
"engines": {
"node": ">=18.0.0"
}
}