-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "kimchi-webgpu",
"version": "1.0.0",
"description": "WebGPU accelerated Kimchi zero-knowledge prover",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc && npm run build:wgsl && npm run copy:types",
"build:wgsl": "cpx \"src/**/*.wgsl\" dist/src",
"copy:types": "cpx \"src/types/**/*.d.ts\" dist/types/",
"test:browser-cli": "npm run build && node dist/src/test-utils/browserWebGPUTestRunnerCli.js",
"test:browser": "npm run build && node dist/src/test-utils/browserWebGPUTestRunner.js"
},
"keywords": [
"Kimchi",
"Zero",
"Knowledge"
],
"author": "Jonathan Kelsey",
"license": "UNLICENSED",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/express": "^5.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.7.2",
"@vitest/browser": "^3.2.4",
"@webgpu/types": "^0.1.65",
"chai": "^6.2.0",
"cpx": "^1.5.0",
"express": "^5.1.0",
"mocha": "^11.7.4",
"o1js": "^2.10.0",
"puppeteer": "^24.24.0",
"typescript": "^5.9.3"
}
}