-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.88 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
{
"name": "cnft-cli",
"version": "1.0.0",
"description": "Cli for cNFT utils on Solana. Using Umi and Metaplex",
"main": "dist/src/index.js",
"author": "0xDon",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch src/**/*.ts --exec ts-node ./src/app.ts",
"build": "tsc",
"start": "node ./dist/app.js",
"lint": "eslint --fix --quiet src/**/*.ts",
"format": "prettier --loglevel silent --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cli": "tsx src/cli.ts"
},
"dependencies": {
"@commander-js/extra-typings": "^12.0.0",
"@inquirer/prompts": "^4.0.0",
"@metaplex-foundation/digital-asset-standard-api": "^1.0.3",
"@metaplex-foundation/mpl-bubblegum": "^3.1.2",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/mpl-toolbox": "^0.9.4",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@metaplex-foundation/umi-uploader-nft-storage": "^0.9.1",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.1",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.90.0",
"bignumber.js": "^9.1.2",
"bs58": "^5.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.4",
"exponential-backoff": "^3.1.1",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint-parser": "^22.0.0"
}
}