-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 913 Bytes
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
{
"name": "gemmaforge",
"version": "0.1.0",
"type": "module",
"description": "Local-first CVE hunting in npm packages, powered by Gemma 4 via Ollama. Built on pwnkit.",
"bin": {
"gemmaforge": "dist/cli.js"
},
"scripts": {
"build": "tsc -p .",
"dev": "tsx src/cli.ts",
"audit": "tsx src/cli.ts audit",
"smoke": "tsx scripts/smoke-gemma.ts",
"web": "cd web && pnpm dev"
},
"keywords": [
"gemma",
"gemma4",
"ollama",
"security",
"npm",
"cve",
"supply-chain",
"ai-agent",
"pwnkit"
],
"author": "Doruk Tan Ozturk <dtozturk02@gmail.com> (@peaktwilight)",
"homepage": "https://github.com/peaktwilight/gemmaforge",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}