-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
{
"name": "onnxruntime-builder",
"version": "0.0.0",
"private": true,
"description": "Custom ONNX Runtime WASM build optimized for Socket CLI",
"license": "MIT",
"type": "module",
"exports": {
"./build/ort.mjs": "./build/dev/out/Final/ort.mjs",
"./build/ort.wasm": "./build/dev/out/Final/ort.wasm",
"./build/ort-sync.mjs": "./build/dev/out/Final/ort-sync.mjs",
"./build/ort-sync.cjs": "./build/dev/out/Final/ort-sync.cjs"
},
"scripts": {
"build": "node scripts/build.mjs",
"build:force": "node scripts/build.mjs --force",
"clean": "node scripts/clean.mjs",
"coverage": "vitest run --coverage",
"test": "vitest run",
"test:suite": "node scripts/test-onnx-suite.mjs",
"postinstall": "node scripts/setup-build-toolchain.mjs"
},
"dependencies": {
"@socketsecurity/lib": "catalog:",
"acorn": "catalog:",
"acorn-walk": "catalog:",
"build-infra": "workspace:*",
"magic-string": "catalog:"
},
"devDependencies": {
"@vitest/coverage-v8": "catalog:",
"vitest": "catalog:"
},
"sources": {
"onnxruntime": {
"version": "1.20.1",
"type": "git",
"url": "https://github.com/microsoft/onnxruntime.git",
"ref": "5c1b7ccbff7e5141c1da7a9d963d660e5741c319"
},
"eigen": {
"version": "3.4.0",
"type": "git",
"url": "https://gitlab.com/libeigen/eigen.git",
"ref": "e7248b26a1ed53fa030c5c459f7ea095dfd276ac",
"sha1": "32b145f525a8308d7ab1c09388b2e288312d8eba"
}
}
}