-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "@cleanslice/runtime",
"version": "0.12.0",
"license": "MIT",
"type": "module",
"bin": {
"cleanslice": "./dist/cli.js"
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run --smol src/index.ts",
"multi": "bun run --smol src/multi.ts",
"cli": "bun run src/cli.ts",
"build": "bun build src/index.ts --outdir dist --target bun && bun build src/cli.ts --outfile dist/cli.js --target bun",
"test": "bun test",
"monitor": "bash scripts/monitor.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "0.79.0",
"@aws-sdk/client-s3": "3.1009.0",
"@aws-sdk/client-secrets-manager": "3.1009.0",
"@modelcontextprotocol/sdk": "1.29.0",
"gray-matter": "^4.0.3",
"playwright": "1.58.2",
"playwright-extra": "4.3.6",
"puppeteer-extra-plugin-stealth": "2.11.2",
"socket.io-client": "^4.8.3",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"bun-types": "latest"
}
}