-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1004 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1004 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
{
"name": "aibom-generator-hf",
"version": "0.1.0",
"description": "A project to generate AIBOMs for the top trending models from Hugging Face.",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"pretest": "eslint . --ext .ts",
"test": "node --import tsx --test test/test.ts",
"coverage": "nyc --reporter=text --reporter=html --reporter=cobertura npm run test"
},
"dependencies": {
"axios": "^1.12.2"
},
"devDependencies": {
"@types/node": "^24.7.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.45.0",
"nyc": "^17.1.0",
"ts-node": "^10.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/trustification/aibom-generator.git"
},
"keywords": [
"AIBOM",
"Hugging Face",
"model generator"
],
"author": "Petr Toman",
"license": "Apache-2.0"
}