-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
66
67
68
69
{
"name": "glitch-gremlin-ai",
"version": "0.1.0",
"description": "AI-driven chaos testing for Solana programs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:sdk && npm run build:cli",
"build:sdk": "tsc -p sdk/tsconfig.json",
"build:cli": "tsc -p cli/tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"clean": "rimraf dist coverage",
"prepare": "husky install"
},
"dependencies": {
"@solana/web3.js": "^1.87.6",
"@tensorflow/tfjs-node": "^4.17.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"ioredis": "^5.3.2"
},
"devDependencies": {
"@project-serum/anchor": "^0.26.0",
"@types/bn.js": "^5.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"winston": "^3.17.0",
"zod": "^3.24.1"
},
"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"
}