-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "isambard",
"version": "0.1.0",
"description": "AI-powered Discord bot with persistent memory using DynamoDB",
"type": "module",
"private": true,
"license": "Apache-2.0",
"author": "Craig Hughes",
"repository": {
"type": "git",
"url": "https://github.com/hughescr/isambard.git"
},
"scripts": {
"backfill:contact-lookup-gsi2": "sst shell -- bun tools/backfill-contact-lookup-gsi2.ts",
"check:ast-grep": "ast-grep scan --report-style short",
"clones": "jscpd src/",
"dead-code": "knip",
"dead-code:fix": "knip --fix",
"deploy:running": "cd running && git fetch origin running && git reset --hard origin/running && bun install",
"dev:sst": "sst shell -- bun --no-env-file --hot src/index.ts",
"postinstall": "tools/setup-node-llama-cpp.sh",
"lint": "eslint --cache --concurrency=auto --format unix .",
"lint:fix": "eslint --cache --fix --format overview .",
"lint:overview": "eslint --cache --concurrency=auto --format overview .",
"mutate": "tools/run-stryker.sh",
"mutate:wait": "tools/run-stryker.sh --wait",
"sst-deploy": "sst deploy",
"sst-dev": "sst dev",
"sst-diagnostics": "sst diagnostic --print-logs \"$@\"",
"sst-remove": "sst remove",
"start": "bun run dev:sst",
"test": "bun test ${CI:+--timeout 60000}",
"test:full": "bun run check:ast-grep && bun run lint && bun run typecheck && bun run mutate",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.src.json"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.258",
"@atproto/api": "^0.20.42",
"@aws-sdk/client-dynamodb": "^3.1124.0",
"@aws-sdk/lib-dynamodb": "^3.1124.0",
"@discordjs/builders": "^1.14.1",
"@hughescr/logger": "^2.10.1",
"@sapphire/snowflake": "^3.5.5",
"@smithy/node-http-handler": "^4.12.0",
"cron-parser": "^5.10.0",
"discord.js": "^14.27.0",
"env-var": "^7.5.0",
"heic-convert": "^2.1.0",
"html-to-text": "^10.0.1",
"lodash-es": "^4.18.1",
"luxon": "^3.7.2",
"mrmime": "^2.0.1",
"node-ical": "^0.27.1",
"node-llama-cpp": "^3.20.0",
"p-limit": "^7.3.2",
"remove-markdown": "^0.7.0",
"semver": "^7.8.5",
"sqlite-vec": "^0.1.9",
"sst": "^4.17.1",
"tsdav": "^2.3.1",
"xstate": "^5.32.6",
"zod": "^4.5.4"
},
"devDependencies": {
"@ast-grep/cli": "^0.45.3",
"@hughescr/eslint-config-default": "^6.0.1",
"@hughescr/eslint-plugin-module-boundaries": "^1.0.0",
"@hughescr/eslint-plugin-test-hygiene": "^1.0.0",
"@hughescr/stryker-bun-runner": "^1.3.8",
"@hughescr/stryker-llm-mutator": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@smithy/types": "^4.17.2",
"@stryker-mutator/api": "^10.0.0",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/typescript-checker": "^10.0.0",
"@types/bun": "^1.4.0",
"@types/heic-convert": "^2.1.1",
"@types/html-to-text": "^9.0.4",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.7.5",
"@types/remove-markdown": "^0.3.4",
"@types/semver": "^7.8.0",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^10.9.1",
"eslint-formatter-overview": "^2.0.0",
"eslint-formatter-unix": "^9.0.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-boundaries": "^7.2.0",
"eslint-plugin-jest": "^29.16.6",
"eslint-plugin-package-json": "^1.8.0",
"jscpd": "^5.1.1",
"knip": "^6.34.0",
"typescript": "^6.0.3"
},
"overrides": {
"discord-api-types": "0.38.42"
},
"trustedDependencies": [
"@ast-grep/cli"
],
"engines": {
"node": ">=23.0.0",
"bun": ">=1.3.12"
}
}