-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2 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
{
"name": "sol-parser-sdk-nodejs",
"version": "0.4.0",
"description": "High-performance Solana DEX event parser for Node.js/TypeScript (Yellowstone gRPC, log parsing)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"README_CN.md",
"LICENSE",
".env.example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/0xfnzero/sol-parser-sdk-nodejs.git"
},
"bugs": {
"url": "https://github.com/0xfnzero/sol-parser-sdk-nodejs/issues"
},
"homepage": "https://github.com/0xfnzero/sol-parser-sdk-nodejs#readme",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && mkdir -p dist/shredstream && cp src/shredstream/shredstream.proto dist/shredstream/",
"prepublishOnly": "npm run build",
"check:dex-events": "tsx scripts/check-dex-event-parity.ts",
"verify:discriminators": "tsx scripts/verify-program-log-discriminators.ts",
"check:json-utils": "tsx scripts/check-json-utils.ts",
"check:discriminator-lut": "tsx scripts/check-discriminator-lut.ts",
"test": "vitest run",
"check:migration": "npm run check:dex-events && npm run verify:discriminators && npm run check:discriminator-lut && npm run check:json-utils && npm run build",
"example:shredstream:subscribe": "tsx examples/shredstream_example.ts",
"example:shredstream:pumpfun-json": "tsx examples/shredstream_pumpfun_json.ts",
"example:shredstream": "tsx examples/shredstream_example.ts",
"example:shredstream:pumpfun": "tsx examples/shredstream_pumpfun_json.ts"
},
"keywords": [
"solana",
"dex",
"parser",
"pumpfun",
"raydium"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.19.17",
"dotenv": "^17.4.1",
"tsx": "^4.21.0",
"typescript": "^5.6.3",
"vitest": "^2.1.9"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.4",
"@grpc/proto-loader": "^0.7.13",
"@solana/web3.js": "^1.95.4",
"@triton-one/yellowstone-grpc": "^1.0.0",
"bs58": "^6.0.0"
}
}