-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"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.14.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.1.0",
"@eslint/js": "10.0.1",
"@eslint/eslintrc": "3.3.5",
"nyc": "^18.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"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"
}