-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 779 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 779 Bytes
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
{
"name": "agentfiles",
"version": "0.1.0",
"private": true,
"repository": "miltonparedes/agentfiles",
"type": "module",
"bin": {
"af": "./dist/af"
},
"scripts": {
"build": "bun cli/scripts/build.ts",
"dev": "bun cli/src/cli.ts",
"lint": "oxlint cli/src/",
"format": "oxfmt --write cli/src/",
"format:check": "oxfmt --check cli/src/",
"test:unit": "bun test cli/tests/unit/",
"test:integration:mock": "bun test cli/tests/integration/mock/",
"test:integration:real": "bun test cli/tests/integration/real/"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"yargs": "^18.0.0"
}
}