-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.75 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "crypto-vision",
"version": "0.1.0",
"description": "The complete cryptocurrency intelligence API — cryptocurrency.cv",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "node dist/src/index.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"docker:build": "docker build -t crypto-vision .",
"docker:run": "docker run -p 8080:8080 --env-file .env crypto-vision",
"training:generate": "tsx scripts/training/generate-training-data.ts",
"training:validate": "tsx scripts/training/validate-data.ts",
"training:finetune": "tsx scripts/training/finetune-gemini.ts",
"training:eval": "tsx scripts/training/eval-models.ts",
"training:eval:quick": "tsx scripts/training/eval-models.ts quick",
"training:retrain": "tsx scripts/training/retrain.ts",
"training:prepare": "tsx scripts/training/opensource/prepare-data.ts",
"export": "tsx scripts/export-all.ts",
"export:dry-run": "tsx scripts/export-all.ts --dry-run",
"export:download": "bash scripts/download-exports.sh",
"export:import-pg": "tsx scripts/import-to-postgres.ts",
"stego": "tsx scripts/stego.ts",
"stego:encode": "tsx scripts/stego.ts encode",
"stego:scan": "tsx scripts/stego.ts scan",
"stego:inject": "tsx scripts/stego.ts inject"
},
"dependencies": {
"@google-cloud/aiplatform": "^6.5.0",
"@google-cloud/bigquery": "^8.1.1",
"@google-cloud/pubsub": "^5.3.0",
"@google-cloud/storage": "^7.19.0",
"@google-cloud/vertexai": "^1.10.0",
"@hono/node-server": "^1.19.0",
"@hono/node-ws": "^1.3.0",
"@napi-rs/canvas": "^0.1.95",
"canvas": "^3.2.1",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"grammy": "^1.41.1",
"hono": "^4.12.0",
"ioredis": "^5.10.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.0",
"postgres": "^3.4.8",
"prom-client": "^15.1.3",
"sharp": "^0.34.5",
"undici": "^7.22.0",
"ws": "^8.19.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.0.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.0.0"
},
"overrides": {
"@esbuild-kit/core-utils": {
"esbuild": ">=0.25.0"
}
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"author": "nirholas",
"repository": {
"type": "git",
"url": "https://github.com/nirholas/crypto-vision"
}
}