-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.32 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "solvoid",
"version": "1.3.2",
"description": "Enterprise-grade Privacy Lifecycle Management (PLM) platform for the Solana Ecosystem",
"main": "dist/sdk/index.js",
"types": "dist/sdk/index.d.ts",
"bin": {
"solvoid-scan": "./bin/solvoid-scan"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"LICENSE",
"SECURITY.md"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"lint": "eslint sdk cli --ext .ts",
"prepublishOnly": "npm run build",
"preversion": "npm test",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags",
"docs": "typedoc --out docs sdk/",
"dashboard:dev": "npm run dev --prefix dashboard",
"dashboard:build": "npm run build --prefix dashboard",
"dashboard:start": "npm run start --prefix dashboard"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@coral-xyz/borsh": "^0.32.1",
"@lightprotocol/stateless.js": "^0.22.0",
"@pythnetwork/client": "^2.22.1",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.98.0",
"arg": "^5.0.2",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"chalk": "^5.6.2",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"commander": "^14.0.2",
"cors": "^2.8.6",
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.0",
"ora": "^9.1.0",
"p-retry": "^7.1.1",
"pako": "^2.1.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.7",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"snarkjs": "^0.7.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.16",
"typescript": "^5.4.0"
},
"peerDependencies": {
"@jito-foundation/jito-ts": ">=3.0.0"
},
"peerDependenciesMeta": {
"@jito-foundation/jito-ts": {
"optional": true
}
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"solana",
"privacy",
"security",
"scanner",
"leak-detection",
"opsec",
"audit",
"blockchain",
"mev",
"compliance"
],
"author": "SolVoid Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brainless3178/SolVoid"
},
"bugs": {
"url": "https://github.com/brainless3178/SolVoid/issues"
},
"homepage": "https://github.com/brainless3178/SolVoid#readme",
"overrides": {
"elliptic": "^6.5.7",
"@ethersproject/signing-key": "^4.2.1",
"@ethersproject/hdnode": "^5.0.8",
"@ethersproject/transactions": "^5.8.0",
"@ethersproject/abstract-provider": "^5.8.0",
"@ethersproject/abstract-signer": "^5.8.0",
"@ethersproject/hash": "^5.8.0",
"@ethersproject/abi": "^5.8.0",
"@ethersproject/contracts": "^5.8.0",
"@ethersproject/providers": "^5.8.0",
"@ethersproject/wallet": "^5.8.0",
"@ethersproject/json-wallets": "^5.8.0",
"@ethersproject/wordlists": "^5.8.0",
"ethers": "^6.13.2"
}
}