-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "glitch-gremlin-ai",
"version": "0.1.0",
"description": "AI-driven chaos engine for stress-testing Solana dApps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"deploy:devnet": "ts-node scripts/deploy-testnet.ts",
"deploy:testnet": "ts-node scripts/deploy-testnet.ts",
"deploy:mainnet": "ts-node scripts/deploy-mainnet.ts",
"test": "jest",
"build": "anchor build",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist .anchor",
"predeploy": "npm run build",
"verify": "anchor verify",
"localnet": "solana-test-validator",
"start": "ts-node src/index.ts"
},
"dependencies": {
"@coral-xyz/anchor": "0.30.1",
"@metaplex-foundation/mpl-token-metadata": "^3.3.0",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "git+https://github.com/anza-xyz/solana-web3.js.git#main",
"@types/ioredis": "^5.0.0",
"bs58": "^5.0.0",
"dotenv": "^16.3.1",
"ioredis": "^5.3.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/glitch-gremlin-ai.git"
},
"keywords": [
"solana",
"blockchain",
"chaos-testing",
"ai",
"machine-learning",
"security"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/glitch-gremlin-ai/issues"
},
"homepage": "https://github.com/yourusername/glitch-gremlin-ai#readme"
}