Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
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.jsonBlame31 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",
febd4f0Claude12 "test": "bun test",
13 "preflight": "bun scripts/preflight.ts"
fc1817aClaude14 },
15 "dependencies": {
e883329Claude16 "@anthropic-ai/sdk": "^0.88.0",
fc1817aClaude17 "@hono/node-server": "^1.13.0",
18 "@neondatabase/serverless": "^0.10.0",
2df1f8cClaude19 "@simplewebauthn/server": "^13.3.0",
79136bbClaude20 "drizzle-orm": "^0.39.0",
21 "highlight.js": "^11.11.0",
22 "hono": "^4.7.0",
6f3ce18Claude23 "marked": "^18.0.0",
24 "postgres": "^3.4.9"
fc1817aClaude25 },
26 "devDependencies": {
27 "@types/bun": "^1.2.0",
28 "drizzle-kit": "^0.30.0",
29 "typescript": "^5.7.0"
30 }
31}