-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 954 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 954 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
{
"name": "codet5-models-builder",
"version": "0.0.0",
"description": "CodeT5 model conversion and optimization for Socket CLI",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
"./lib/ensure-codet5": "./lib/ensure-codet5.mts",
"./scripts/paths": "./scripts/paths.mts"
},
"scripts": {
"build": "node scripts/build.mts",
"build:force": "node scripts/build.mts --force",
"clean": "node scripts/clean.mts",
"cover": "vitest run --coverage",
"test": "vitest run"
},
"dependencies": {
"@socketsecurity/lib-stable": "catalog:",
"build-infra": "workspace:*"
},
"devDependencies": {
"@vitest/coverage-v8": "catalog:",
"onnxruntime-node": "1.20.1",
"vitest": "catalog:"
},
"sources": {
"codet5": {
"version": "Salesforce/codet5-base",
"type": "huggingface",
"url": "https://huggingface.co/Salesforce/codet5-base",
"ref": "main"
}
}
}