-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.92 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@renegade-fi/renegade-js",
"version": "0.5.8-cjs",
"description": "Typescript bindings for the Renegade relayer API.",
"author": "Christopher Bender <chris@renegade.fi>",
"repository": "https://github.com/renegade-fi/renegade-js",
"homepage:": "https://renegade.fi",
"keywords": [
"renegade",
"darkpool",
"crypto",
"mpc",
"zero-knowledge",
"typescript"
],
"main": "dist/index.js",
"module": "index.ts",
"type": "module",
"scripts": {
"test": "yarn run build:wasm-test && vitest run --dir tests",
"build": "yarn run build:wasm && tsc",
"build-node": "yarn run build:wasm-node && tsc",
"build:wasm": "cd wasm && ./build.sh",
"build:wasm-test": "cd wasm && ./build.sh --test",
"build:wasm-node": "cd wasm && ./build.sh --node",
"prettier": "prettier --write {__tests__,src}/ --config ./.prettierrc",
"eslint": "eslint {__tests__,src}/ --fix --config ./.eslintrc.cjs",
"lint": "npm run prettier && npm run eslint"
},
"dependencies": {
"@noble/hashes": "^1.3.0",
"axios": "^1.3.5",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^5.0.0",
"json-bigint": "^1.0.0",
"uuid": "^9.0.0",
"viem": "^2.9.16",
"ws": "^8.13.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/json-bigint": "^1.0.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.7",
"ts-to-zod": "^3.1.3",
"typescript": "5.1.6",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^1.2.1"
},
"files": [
"dist/",
"src/",
"renegade-utils/",
"README.md"
]
}