-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "taskforge",
"version": "1.0.0",
"description": "Intelligent task decomposition quality assessment and auto-optimization system powered by LLMs",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"test": "jest",
"demo:structural": "node demo.mjs",
"demo:semantic": "node demo-semantic.mjs",
"demo:optimize": "node demo-optimize.mjs"
},
"keywords": [
"task-decomposition",
"llm",
"ai",
"project-management",
"task-planning",
"quality-assessment",
"auto-optimization"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/lichman0405/taskforge.git"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.70.0",
"@google/generative-ai": "^0.24.1",
"@xenova/transformers": "^2.17.2",
"dotenv": "^17.2.3",
"ollama": "^0.6.3",
"openai": "^6.9.1"
}
}