forked from ava-labs/ac-eerc-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@avalabs/ac-eerc-sdk",
"version": "2.0.2",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "README.md", "package.json"],
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.1.6",
"@biomejs/biome": "^1.8.3",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/react": "^18.3.3",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"react": ">=18",
"viem": "^1.21.4",
"wagmi": "^1.4.13"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "biome check .",
"format": "biome format --write .",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"blake-hash": "^2.0.0",
"js-sha256": "^0.11.0",
"poseidon-lite": "^0.3.0",
"react-use": "^17.5.0"
},
"description": "SDK for the Encrypted ERC",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ava-labs/ac-eerc-sdk.git"
},
"author": "avalabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ava-labs/ac-eerc-sdk/issues"
},
"homepage": "https://github.com/ava-labs/ac-eerc-sdk#readme"
}