forked from Tee-py/solana-txn-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.77 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.77 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
{
"name": "solana-parser",
"version": "0.1.4",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && rm tsconfig.tsbuildinfo",
"build:types": "tsc --emitDeclarationOnly",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" && prettier --write \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check:types": "tsc --noEmit"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"*": ["dist/types/*"]
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"testMatch": [
"**/tests/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"keywords": [
"blockchain",
"solana",
"transaction",
"parser",
"raydium",
"pumpfun",
"jupiter",
"instruction",
"web3",
"defi"
],
"author": "Oluwatobiloba Emmanuel",
"license": "MIT",
"description": "lightweight transaction parser for popular DeFi applications on the Solana blockchain, written in TypeScript.",
"dependencies": {
"@noble/hashes": "^1.5.0",
"@solana/web3.js": "^1.95.3",
"bs58": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}