forked from debridge-finance/solana-tx-parser-public
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
73 lines (73 loc) · 2.31 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
70
71
72
73
{
"name": "@shyft.to/solana-transaction-parser",
"description": "Tool for parsing arbitrary Solana transactions with IDL/custom parsers",
"version": "1.1.20",
"author": "deBridge->Shyft",
"license": "LGPL-2.1",
"homepage": "https://shyft.to",
"repository": {
"type": "git",
"url": "[email protected]:Shyft-to/solana-tx-parser-public.git"
},
"keywords": [
"solana",
"shyft",
"blockchain"
],
"files": [
"dist/**",
"docs/**",
"LICENSE",
"README.md"
],
"browser": "./dist/browser/index.js",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"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",
"snake-case": "^3.0.4",
"ts-node": "^10.9.1",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.0.1"
},
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@solana/codecs": "2.0.0-preview.2",
"@solana/spl-token": "^0.4.6",
"@solana/spl-type-length-value": "0.1.0",
"@solana/web3.js": "^1.91.8",
"buffer": "6.0.3"
}
}