-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 KB
/
package.json
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
{
"name": "sdk",
"version": "0.0.1",
"type": "module",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"build": "tsup src/index.ts --format esm --dts",
"typecheck": "tsc --noEmit",
"format": "prettier --write *.ts",
"format:ci": "prettier --check **/*.ts"
},
"author": "",
"license": "ISC",
"description": "",
"peerDependencies": {
"@noir-lang/acvm_js": "^0.45.0",
"@noir-lang/backend_barretenberg": "0.29.0",
"@noir-lang/noir_js": "0.29.0",
"@noir-lang/noirc_abi": "0.29.0",
"noir-ethereum-api-oracles": "file:/Users/artur/Documents/code/oracles",
"viem": "^2.9.28"
},
"dependencies": {
"@noir-lang/acvm_js": "^0.45.0",
"@noir-lang/backend_barretenberg": "0.29.0",
"@noir-lang/noir_js": "0.29.0",
"@noir-lang/noirc_abi": "0.29.0",
"noir-ethereum-api-oracles": "file:/Users/artur/Documents/code/oracles",
"viem": "^2.9.28"
},
"devDependencies": {
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}