-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "agentfoo",
"version": "0.1.1",
"description": "A vitest-like unit test framework for skills and agents",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=18.19"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
}
},
"bin": {
"agentfoo": "./dist/cli.js"
},
"files": [
"dist",
"dockers",
"scripts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"typecheck": "tsc --noEmit",
"example": "npm run build && cd example && node --import ../scripts/register-ts.mjs ../src/cli.ts run",
"prepublishOnly": "npm run build && npm run test && npm run typecheck"
},
"peerDependencies": {
"vitest": "^3.2.7"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"vitest": "^3.2.7"
}
}