forked from matthias-hausberger/beige-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "@matthias-hausberger/beige-toolkit",
"version": "1.0.9",
"description": "A collection of tools for Beige agents",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"plugins/*/plugin.json",
"plugins/*/package.json",
"plugins/*/*.ts",
"plugins/*/README.md",
"plugins/*/SKILL.md",
"plugins/*/skills/**",
"plugins/apple-calendar/calendar-cli.swift",
"plugins/apple-calendar/calendar-cli"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "bash scripts/smoke.sh"
},
"devDependencies": {
"@matthias-hausberger/beige": ">=1.1.0",
"@types/node": "^22.0.0",
"cron-parser": "^5.5.0",
"grammy": "^1.35.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"beige",
"toolkit",
"ai",
"agent",
"tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matthias-hausberger/beige-toolkit.git"
},
"bugs": {
"url": "https://github.com/matthias-hausberger/beige-toolkit/issues"
},
"homepage": "https://github.com/matthias-hausberger/beige-toolkit#readme",
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": [
"puppeteer"
]
}
}