This repository was archived by the owner on May 6, 2025. It is now read-only.
forked from jup-ag/distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.84 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.84 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
{
"name": "huma-merkle-distributor",
"version": "3.0.0",
"license": "AGPL-3.0-or-later",
"scripts": {
"prepare": "husky install",
"fmt": "cargo +nightly fmt",
"lint": "cargo clippy -- -A warnings",
"lint:fix": "cargo clippy --fix --allow-dirty --allow-staged -- -A warnings",
"fmt-ts": "prettier '**/*.{js,json,ts,yml,yaml}' --write --plugin=prettier-plugin-organize-imports",
"lint-ts": "eslint 'tests/**/*.ts'",
"lint-ts:fix": "eslint 'tests/**/*.ts' --fix",
"build": "anchor build -p merkle-distributor",
"build-local": "anchor build -p merkle-distributor -- --features localnet",
"run-tests": "RUST_LOG=error anchor run test",
"test": "yarn build-local && yarn run-tests",
"idl": "anchor idl build -p merkle-distributor -o idl/merkle_distributor.json"
},
"lint-staged": {
"*.{js,json,ts,yaml,yml}": [
"prettier '**/*.{js,json,ts,yml,yaml}' --write --plugin=prettier-plugin-organize-imports",
"eslint --fix"
]
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.0",
"@solana/spl-token": "^0.4.6",
"borsh": "^1.0.0",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.4",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"js-sha3": "^0.8.0",
"js-sha256": "^0.11.0",
"lint-staged": "^14.0.1",
"mocha": "^10.1.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"solana-bankrun": "^0.3.0",
"tiny-invariant": "^1.3.1",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5"
}
}