Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
Blame · Line-by-line history

package.json

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

package.jsonBlame27 lines · 1 contributor
fc1817aClaude1{
2 "name": "gluecron",
3 "version": "0.1.0",
4 "description": "AI-native code intelligence platform — git hosting, automated CI, and green ecosystem enforcement",
5 "type": "module",
6 "scripts": {
7 "dev": "bun run --hot src/index.ts",
8 "start": "bun run src/index.ts",
9 "db:generate": "drizzle-kit generate",
10 "db:migrate": "bun run src/db/migrate.ts",
11 "db:studio": "drizzle-kit studio",
12 "test": "bun test"
13 },
14 "dependencies": {
15 "@hono/node-server": "^1.13.0",
16 "@neondatabase/serverless": "^0.10.0",
79136bbClaude17 "drizzle-orm": "^0.39.0",
18 "highlight.js": "^11.11.0",
19 "hono": "^4.7.0",
20 "marked": "^18.0.0"
fc1817aClaude21 },
22 "devDependencies": {
23 "@types/bun": "^1.2.0",
24 "drizzle-kit": "^0.30.0",
25 "typescript": "^5.7.0"
26 }
27}