forked from debridge-finance/solana-tx-parser-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.26 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": "@debridge-finance/solana-transaction-parser",
"version": "1.0.1",
"description": "Tool for parsing arbitrary solana transactions with IDL/custom parsers",
"keywords": [
"solana",
"web3",
"transaction"
],
"author": "Anton Kuzmenko",
"license": "LGPL",
"browser": "./dist/browser/index.js",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/debridge-finance/solana-tx-parser-public.git"
},
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json",
"build:node": "tsc -p tsconfig.cjs.json",
"build:browser": "rollup -c",
"build": "npm run build:esm && npm run build:node && npm run build:browser",
"prepublishOnly": "npm run build",
"test:ix": "mocha -r ts-node/register -b -t 200000 ./tests/parseIx.test.ts",
"test:tx": "mocha -r ts-node/register -t 200000 ./tests/parseTransaction.test.ts",
"test:sysTx": "mocha -r ts-node/register -b -t 200000 ./tests/parseSystemTransaction.test.ts",
"test:custom": "mocha -r ts-node/register -b -t 200000 ./tests/customParser.test.ts",
"prettify": "prettier --write ./**/*.ts",
"lint": "eslint --config .eslintrc \"./{src,tests}/**/*.{js,ts}\"",
"lint:dump": "eslint --print-config ./.eslintrc.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.2",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.2",
"typedoc-plugin-markdown": "^3.13.1"
},
"dependencies": {
"@project-serum/anchor": "^0.25.0",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.2.0",
"@solana/web3.js": "^1.50.1",
"buffer": "^6.0.3"
}
}