bttrai 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/cli.mjs +33322 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bttrai",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Install MCP servers and agent skills based on your project's stack",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"cli",
|
|
8
|
+
"mcp",
|
|
9
|
+
"skills",
|
|
10
|
+
"agents",
|
|
11
|
+
"developer-tools",
|
|
12
|
+
"ai"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/jagrat7/better-ai#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/jagrat7/better-ai/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/jagrat7/better-ai.git"
|
|
21
|
+
},
|
|
22
|
+
"bin": {
|
|
23
|
+
"bttrai": "dist/cli.mjs"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bun build src/cli.ts --outfile dist/cli.mjs --target node",
|
|
30
|
+
"dev": "bun run src/cli.ts",
|
|
31
|
+
"prepublishOnly": "bun run build",
|
|
32
|
+
"test": "bun test tests/unit/*.test.ts tests/e2e/*.test.ts",
|
|
33
|
+
"test:watch": "bun test --watch tests/unit/*.test.ts tests/e2e/*.test.ts",
|
|
34
|
+
"test:coverage": "bun test --coverage tests/unit/*.test.ts tests/e2e/*.test.ts",
|
|
35
|
+
"sync:skills": "bun run scripts/sync-skills.ts",
|
|
36
|
+
"sync:agents": "bun run scripts/sync-agents.ts"
|
|
37
|
+
},
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/node": "^25.5.0",
|
|
41
|
+
"typescript": "^5.9.3"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@clack/prompts": "^1.1.0",
|
|
45
|
+
"@trpc/server": "^11.13.4",
|
|
46
|
+
"better-result": "^2.8.1",
|
|
47
|
+
"execa": "^9.6.1",
|
|
48
|
+
"picocolors": "^1.1.1",
|
|
49
|
+
"smol-toml": "^1.6.1",
|
|
50
|
+
"tinyglobby": "^0.2.15",
|
|
51
|
+
"trpc-cli": "^0.13.0",
|
|
52
|
+
"zod": "^4.3.6"
|
|
53
|
+
}
|
|
54
|
+
}
|