-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 755 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
{
"name": "thicket",
"version": "0.1.0",
"description": "Dependency vulnerability scanner that tells you which CVEs actually reach your code.",
"license": "ISC",
"type": "module",
"bin": {
"thicket": "./bin/thicket.js"
},
"scripts": {
"test": "node --test test/*.test.js",
"build:web": "esbuild web/app.jsx --bundle --outdir=web/dist --loader:.jsx=jsx --minify && cp web/index.html web/styles.css web/dist/",
"prepare": "npm run build:web",
"dev": "npm run build:web && node bin/thicket.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"esbuild": "^0.25.9",
"express": "^5.1.0",
"open": "^10.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
}