-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "@agenticforge/core",
"version": "2.0.1",
"description": "Core types and LLM client for AgenticFORGE",
"type": "module",
"sideEffects": false,
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build:types": "tsc -p tsconfig.build.json",
"build:js": "rollup -c",
"build": "pnpm run clean && pnpm run typecheck && pnpm run build:types && pnpm run build:js"
},
"dependencies": {
"openai": "^6.25.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^25.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.60.1",
"rollup-plugin-esbuild": "^6.2.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/LittleBlacky/AgenticFORGE.git",
"directory": "packages/core"
},
"homepage": "https://github.com/LittleBlacky/AgenticFORGE/tree/main/packages/core#readme",
"bugs": {
"url": "https://github.com/LittleBlacky/AgenticFORGE/issues"
},
"license": "CC-BY-NC-SA-4.0",
"keywords": [
"agenticforge",
"agent",
"ai",
"llm",
"typescript",
"llm-client",
"openai",
"message",
"base-agent",
"ai-core"
]
}