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", |
| 21 | "preflight": "bun scripts/preflight.ts" | |
| fc1817a | 22 | }, |
| 23 | "dependencies": { | |
| e883329 | 24 | "@anthropic-ai/sdk": "^0.88.0", |
| fc1817a | 25 | "@hono/node-server": "^1.13.0", |
| 26 | "@neondatabase/serverless": "^0.10.0", | |
| 2df1f8c | 27 | "@simplewebauthn/server": "^13.3.0", |
| 79136bb | 28 | "drizzle-orm": "^0.39.0", |
| 29 | "highlight.js": "^11.11.0", | |
| 30 | "hono": "^4.7.0", | |
| 6f3ce18 | 31 | "marked": "^18.0.0", |
| 32 | "postgres": "^3.4.9" | |
| fc1817a | 33 | }, |
| 34 | "devDependencies": { | |
| 35 | "@types/bun": "^1.2.0", | |
| 36 | "drizzle-kit": "^0.30.0", | |
| 37 | "typescript": "^5.7.0" | |
| 38 | } | |
| 39 | } |