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.
| fc1817a | 1 | { |
| 2 | "name": "gluecron", | |
| 3 | "version": "0.1.0", | |
| 4 | "description": "AI-native code intelligence platform — git hosting, automated CI, and green ecosystem enforcement", | |
| f674b01 | 5 | "license": "MIT", |
| 6 | "repository": { | |
| 7 | "type": "git", | |
| 8 | "url": "https://gluecron.com/ccantynz/Gluecron.com.git" | |
| 9 | }, | |
| 10 | "engines": { | |
| 11 | "node": ">=20" | |
| 12 | }, | |
| fc1817a | 13 | "type": "module", |
| 14 | "scripts": { | |
| 15 | "dev": "bun run --hot src/index.ts", | |
| 16 | "start": "bun run src/index.ts", | |
| 17 | "db:generate": "drizzle-kit generate", | |
| 18 | "db:migrate": "bun run src/db/migrate.ts", | |
| 19 | "db:studio": "drizzle-kit studio", | |
| febd4f0 | 20 | "test": "bun test", |
| a014def | 21 | "preflight": "bun scripts/preflight.ts", |
| 22 | "e2e": "playwright test --config=e2e/playwright.config.ts" | |
| fc1817a | 23 | }, |
| 24 | "dependencies": { | |
| cab3dc9 | 25 | "@anthropic-ai/sdk": "^0.96.0", |
| 26 | "@neondatabase/serverless": "^1.1.0", | |
| 2df1f8c | 27 | "@simplewebauthn/server": "^13.3.0", |
| cab3dc9 | 28 | "drizzle-orm": "^0.45.2", |
| 79136bb | 29 | "highlight.js": "^11.11.0", |
| cab3dc9 | 30 | "hono": "^4.12.18", |
| 31 | "marked": "^18.0.3", | |
| 60323c5 | 32 | "postgres": "^3.4.9", |
| 33 | "ssh2": "^1.16.0" | |
| 34 | }, | |
| 35 | "optionalDependencies": { | |
| 36 | "cpu-features": "*", | |
| 37 | "sshcrypto": "*" | |
| fc1817a | 38 | }, |
| 39 | "devDependencies": { | |
| a014def | 40 | "@playwright/test": "^1.49.0", |
| cab3dc9 | 41 | "@types/bun": "^1.3.14", |
| d8cf368 | 42 | "@types/k6": "^2.0.0", |
| cab3dc9 | 43 | "drizzle-kit": "^0.31.10", |
| fc1817a | 44 | "typescript": "^5.7.0" |
| 45 | } | |
| 46 | } |