-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 2.12 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
{
"name": "@ironforge/mudlands",
"version": "0.0.2",
"description": "Discovers all IDLs ever published for a Solana program.",
"main": "dist/src/mudlands.js",
"types": "dist/src/mudlands.d.ts",
"scripts": {
"amman:start": "(cd test/anchor && amman start)",
"amman:stop": "amman stop",
"build": "tsc",
"lint": "prettier --check src/ examples/ test/ README.md",
"lint:fix": "prettier --write src/ examples/ test/ README.md",
"depcheck": "depcheck",
"depcheck:fix": "for m in `depcheck --json | jq '.missing | keys[]' --raw-output`; do yarn add $m; done",
"test": "node --test --test-reporter=spec -r esbuild-runner/register ./test/*.ts",
"test:ix": "yarn test:ix:anchor && yarn test:ix:misc",
"test:ix:anchor": "./test/anchor/run-ix.sh",
"test:ix:misc": "node --test --test-reporter=spec -r esbuild-runner/register ./test/ix/*.ts",
"ex:cndy": "node -r esbuild-runner/register ./examples/check-idl.ts cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ",
"ex:usd": "node -r esbuild-runner/register ./examples/check-idl.ts 1USDCmv8QmvZ9JaL7bmevGsNHn7ez8TNahJzCN551sb",
"check:idl": "node -r esbuild-runner/register ./examples/check-idl.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironforge-cloud/mudlands.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ironforge-cloud/mudlands/issues"
},
"homepage": "https://github.com/ironforge-cloud/mudlands#readme",
"files": [
"dist/src"
],
"dependencies": {
"@noble/ed25519": "^1.7.3",
"@noble/hashes": "^1.3.2",
"@solana/web3.js": "^1.78.5",
"bn.js": "^5.2.1",
"bs58": "^5.0.0"
},
"devDependencies": {
"@metaplex-foundation/amman": "^0.12.1",
"@metaplex-foundation/amman-client": "^0.2.4",
"@metaplex-foundation/rustbin": "^0.3.5",
"@types/bn.js": "^5.1.2",
"@types/debug": "^4.1.8",
"@types/node": "^20.6.2",
"debug": "^4.3.4",
"depcheck": "^1.4.6",
"esbuild": "^0.19.3",
"esbuild-runner": "^2.2.2",
"execa": "^7.2.0",
"prettier": "^3.0.3",
"spok": "^1.5.5",
"supports-color": "^9.4.0",
"typescript": "^5.2.2"
}
}