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.jsonBlame29 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": {
e883329Claude15 "@anthropic-ai/sdk": "^0.88.0",
fc1817aClaude16 "@hono/node-server": "^1.13.0",
17 "@neondatabase/serverless": "^0.10.0",
2df1f8cClaude18 "@simplewebauthn/server": "^13.3.0",
79136bbClaude19 "drizzle-orm": "^0.39.0",
20 "highlight.js": "^11.11.0",
21 "hono": "^4.7.0",
22 "marked": "^18.0.0"
fc1817aClaude23 },
24 "devDependencies": {
25 "@types/bun": "^1.2.0",
26 "drizzle-kit": "^0.30.0",
27 "typescript": "^5.7.0"
28 }
29}