-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "@scopelift/stealth-address-sdk",
"version": "1.0.0-beta.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ScopeLift/stealth-address-sdk"
},
"files": [
"dist/config",
"dist/index.d.ts",
"dist/index.js",
"dist/lib/abi",
"dist/lib/actions",
"dist/lib/helpers/*.d.ts",
"dist/lib/helpers/*.js",
"dist/lib/index.d.ts",
"dist/lib/index.js",
"dist/lib/stealthClient",
"dist/utils",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"anvil-fork": "make anvil-fork",
"test-fork": "make test-fork",
"test": "bun test",
"build": "bun run check && bun tsc",
"watch": "bun test --watch src",
"check": "biome check .",
"fix": "biome check --apply ."
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/bun": "latest",
"typescript": "^5.3.3"
},
"dependencies": {
"@noble/secp256k1": "^2.0.0",
"graphql-request": "^7.1.0",
"viem": "^2.9.16"
}
}