charon-hooks 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/README.md +156 -0
- package/bin/charon.js +103 -0
- package/dist/client/assets/index-Ccj2TupZ.css +1 -0
- package/dist/client/assets/index-hnnw32hs.js +223 -0
- package/dist/client/favicon.svg +65 -0
- package/dist/client/file.svg +1 -0
- package/dist/client/globe.svg +1 -0
- package/dist/client/index.html +14 -0
- package/dist/client/next.svg +1 -0
- package/dist/client/vercel.svg +1 -0
- package/dist/client/window.svg +1 -0
- package/dist/server/index.js +1610 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "charon-hooks",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Autonomous task triggering service - webhooks and cron to AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"charon-hooks": "./bin/charon.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/",
|
|
11
|
+
"dist/"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "bun run dev:server",
|
|
15
|
+
"dev:server": "bun --watch src/server/index.ts",
|
|
16
|
+
"dev:client": "vite",
|
|
17
|
+
"dev:all": "bun run build:client && bun run dev:server",
|
|
18
|
+
"build": "bun run build:client && bun run build:server",
|
|
19
|
+
"build:client": "vite build",
|
|
20
|
+
"build:server": "tsup",
|
|
21
|
+
"start": "node dist/server/index.js",
|
|
22
|
+
"lint": "eslint",
|
|
23
|
+
"test": "CHARON_DB=:memory: bun test",
|
|
24
|
+
"test:watch": "CHARON_DB=:memory: bun test --watch"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@hono/node-server": "^1.19.8",
|
|
28
|
+
"@hugeicons/core-free-icons": "^3.1.1",
|
|
29
|
+
"@hugeicons/react": "^1.1.4",
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
31
|
+
"@ngrok/ngrok": "^1.7.0",
|
|
32
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
33
|
+
"better-sqlite3": "^12.5.0",
|
|
34
|
+
"class-variance-authority": "^0.7.1",
|
|
35
|
+
"clsx": "^2.1.1",
|
|
36
|
+
"date-fns": "^4.1.0",
|
|
37
|
+
"hono": "^4.7.0",
|
|
38
|
+
"lucide-react": "^0.562.0",
|
|
39
|
+
"node-cron": "^4.2.1",
|
|
40
|
+
"radix-ui": "^1.4.3",
|
|
41
|
+
"react": "19.2.3",
|
|
42
|
+
"react-dom": "19.2.3",
|
|
43
|
+
"tailwind-merge": "^3.4.0",
|
|
44
|
+
"yaml": "^2.8.2",
|
|
45
|
+
"zod": "^4.3.5"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@tailwindcss/postcss": "^4",
|
|
49
|
+
"@tailwindcss/vite": "^4",
|
|
50
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
51
|
+
"@types/bun": "^1.3.5",
|
|
52
|
+
"@types/node": "^20",
|
|
53
|
+
"@types/node-cron": "^3.0.11",
|
|
54
|
+
"@types/react": "^19",
|
|
55
|
+
"@types/react-dom": "^19",
|
|
56
|
+
"@vitejs/plugin-react": "^4.4.0",
|
|
57
|
+
"eslint": "^9",
|
|
58
|
+
"tailwindcss": "^4",
|
|
59
|
+
"tsup": "^8.5.1",
|
|
60
|
+
"tw-animate-css": "^1.4.0",
|
|
61
|
+
"typescript": "5.9.3",
|
|
62
|
+
"vite": "^6.0.0"
|
|
63
|
+
},
|
|
64
|
+
"ignoreScripts": [
|
|
65
|
+
"sharp",
|
|
66
|
+
"unrs-resolver"
|
|
67
|
+
],
|
|
68
|
+
"trustedDependencies": [
|
|
69
|
+
"better-sqlite3",
|
|
70
|
+
"sharp",
|
|
71
|
+
"unrs-resolver"
|
|
72
|
+
],
|
|
73
|
+
"keywords": [
|
|
74
|
+
"webhook",
|
|
75
|
+
"cron",
|
|
76
|
+
"triggers",
|
|
77
|
+
"automation",
|
|
78
|
+
"ai-agents",
|
|
79
|
+
"claude",
|
|
80
|
+
"task-runner"
|
|
81
|
+
],
|
|
82
|
+
"license": "MIT",
|
|
83
|
+
"repository": {
|
|
84
|
+
"type": "git",
|
|
85
|
+
"url": "git+https://github.com/NaxYo/charon.git"
|
|
86
|
+
},
|
|
87
|
+
"bugs": {
|
|
88
|
+
"url": "https://github.com/NaxYo/charon/issues"
|
|
89
|
+
},
|
|
90
|
+
"homepage": "https://github.com/NaxYo/charon#readme",
|
|
91
|
+
"engines": {
|
|
92
|
+
"node": ">=18"
|
|
93
|
+
}
|
|
94
|
+
}
|