-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.7 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
{
"name": "aptos-nft-cm-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node src/app.ts",
"build": "tsc",
"cli": "node dist/src/cli.js",
"cli:fund": "node dist/src/cli.js account fund",
"cli:createCm": "node dist/src/cli.js cm createCm",
"cli:setupCm": "node dist/src/cli.js usecase setupCm --ip=/Users/daiwanwei/Projects/aptos_ex/aptos-nft-cm-example/collectionInfo.json --m=\"/Users/daiwanwei/Projects/BAAC/Aptos Polar Bears/baac_metadata\" --ri=/Users/daiwanwei/Projects/aptos_ex/aptos-nft-cm-example/royaltyInfo.json",
"cli:createCollection": "node dist/src/cli.js cm createCollection",
"cli:mintTokens": "node dist/src/cli.js cm mintTokens --amount=1 --collectionName=\"Aptos Acid Apes 11\"",
"cli:uploadNFT": "node dist/src/cli.js cm uploadNFT --collectionName=\"Aptos Acid Apes 11\"",
"cli:updateMF": "node dist/src/cli.js cm updateMF --fee=1 --collectionName=\"Aptos Acid Apes 11\"",
"cli:updateWL": "node dist/src/cli.js cm updateWL --collectionName=\"Aptos Acid Apes 11\" --wl=\"/Users/daiwanwei/Projects/BAAC/Aptos Polar Bears/Aptos_Polar_Bears-whitelistAddresses_1.csv\"",
"test": "jest"
},
"keywords": [],
"author": "daiwanwei",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^18.11.2",
"@types/utf8": "^3.0.1",
"@types/yargs": "^17.0.13",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"aptos": "^1.3.16",
"dotenv": "^16.0.3",
"fast-csv": "^4.3.6",
"utf8": "^3.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"yargs": "^17.6.0"
}
}