-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.32 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.32 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
{
"name": "task-bundle",
"version": "0.3.0",
"description": "Turn AI coding runs into portable, replayable, benchmark-ready task bundles.",
"license": "MIT",
"type": "commonjs",
"homepage": "https://github.com/wimi321/task-bundle",
"repository": {
"type": "git",
"url": "https://github.com/wimi321/task-bundle.git"
},
"bugs": {
"url": "https://github.com/wimi321/task-bundle/issues"
},
"keywords": [
"ai",
"llm",
"benchmark",
"html-report",
"evaluation",
"replay",
"badge",
"cli",
"typescript",
"agent",
"codex",
"reproducibility"
],
"bin": {
"taskbundle": "dist/cli/index.js"
},
"files": [
"dist",
"examples",
"docs",
"assets/*.svg",
"assets/*.png",
"assets/*.gif",
"templates",
"LICENSE",
"README.md",
"README.zh-CN.md",
"ROADMAP.md",
"ROADMAP.zh-CN.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "npm run build && npm test",
"clean": "rm -rf dist",
"dev": "tsx src/cli/index.ts",
"test": "node --test --import tsx",
"prepack": "npm run clean && npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^14.0.1"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsx": "^4.20.5",
"typescript": "^5.9.3"
}
}