-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 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
{
"name": "@aurory/web3-utils",
"version": "1.5.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Aurory-Game/web3-utils.git"
},
"bugs": {
"url": "https://github.com/Aurory-Game/web3-utils/issues"
},
"scripts": {
"sp": "ts-node -r dotenv/config $1",
"build": "rm -rf ./lib && tsc -p tsconfig.build.json",
"lint:fix": "eslint --fix --ext .ts,.json . && tsc --pretty",
"lint": "eslint . --ext .ts,.tsx,.json && tsc --pretty",
"test": "jest"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@metaplex-foundation/js": "0.20.1",
"@metaplex-foundation/mpl-bubblegum": "^4.1.0",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.1",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.95.3",
"@supercharge/promise-pool": "^3.2.0",
"ansi-colors": "^4.1.3",
"bs58": "^5.0.0",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"ethers": "6.12.1"
}
}