-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 789 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 789 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
31
32
33
34
35
36
37
{
"name": "@iannuttall/dotagents",
"version": "0.1.2",
"description": "Canonical .agents manager with symlinks for popular AI tools",
"type": "module",
"license": "MIT",
"bin": {
"dotagents": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/cli.tsx",
"build": "bun build src/cli.tsx --outdir dist --target node --format esm",
"type-check": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"chalk": "^5.4.1",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/node": "^22.10.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}