-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.59 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.59 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
{
"name": "charon-hooks",
"version": "0.4.2",
"description": "Autonomous task triggering service - webhooks and cron to AI agents",
"type": "module",
"bin": {
"charon-hooks": "./bin/charon.js"
},
"files": [
"bin/",
"config/*.dist",
"dist/",
"sanitizers/"
],
"scripts": {
"dev": "CHARON_DEV=1 bun run dev:server",
"dev:server": "CHARON_DEV=1 bun --watch src/server/index.ts",
"dev:client": "vite",
"dev:all": "bun run build:client && CHARON_DEV=1 bun run dev:server",
"build": "bun run build:client && bun run build:server",
"build:client": "vite build",
"build:server": "tsup",
"start": "node dist/server/index.js",
"lint": "eslint",
"test": "CHARON_DEV=1 CHARON_DB=:memory: bun test --max-concurrency=1",
"test:watch": "CHARON_DEV=1 CHARON_DB=:memory: bun test --watch --max-concurrency=1"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.972.0",
"@hono/node-server": "^1.19.8",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@modelcontextprotocol/sdk": "^1.25.1",
"@ngrok/ngrok": "^1.7.0",
"@radix-ui/react-slot": "^1.2.4",
"better-sqlite3": "^12.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"hono": "^4.7.0",
"jiti": "^2.6.1",
"lucide-react": "^0.562.0",
"node-cron": "^4.2.1",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"yaml": "^2.8.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4",
"@tailwindcss/vite": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.5",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.4.0",
"eslint": "^9",
"globals": "^17.0.0",
"tailwindcss": "^4",
"tsup": "^8.5.1",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^6.0.0"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"better-sqlite3",
"sharp",
"unrs-resolver"
],
"keywords": [
"webhook",
"cron",
"triggers",
"automation",
"ai-agents",
"claude",
"task-runner"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NaxYo/charon.git"
},
"bugs": {
"url": "https://github.com/NaxYo/charon/issues"
},
"homepage": "https://github.com/NaxYo/charon#readme",
"engines": {
"node": ">=18"
}
}