This repository was archived by the owner on Jul 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "solana-nodejs",
"version": "0.1.0",
"description": "Simplified Solana blockchain implementation in Node.js and TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "npm run build && node dist/index.js",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"node:validator": "node dist/node/validator/index.js",
"cluster:start": "npm run cluster:node1 & npm run cluster:node2 & npm run cluster:node3",
"cluster:node1": "NODE_ID=1 PORT=8001 node dist/node/validator/index.js",
"cluster:node2": "NODE_ID=2 PORT=8002 node dist/node/validator/index.js",
"cluster:node3": "NODE_ID=3 PORT=8003 node dist/node/validator/index.js",
"web:dev": "cd web-ui && npm run dev",
"web:build": "cd web-ui && npm run build",
"web:preview": "cd web-ui && npm run preview"
},
"keywords": [
"blockchain",
"solana",
"proof-of-history",
"consensus",
"typescript",
"nodejs"
],
"author": "Solana Node.js Implementation",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@noble/ed25519": "^2.0.0",
"@noble/hashes": "^1.3.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"ws": "^8.18.3"
},
"engines": {
"node": ">=18.0.0"
}
}