-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.86 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
60
61
62
63
64
65
66
{
"name": "handcash-ordinals-minter",
"version": "1.0.0",
"description": "A collection of scripts to inscribe 1Sat Ordinals using HandCash.",
"main": "src/scripts/CreateMintOrder.js",
"type": "module",
"scripts": {
"build": "tsc",
"CreateCollection": "tsc && node --no-warnings dist/scripts/create/CreateCollection.js",
"CreateItems": "tsc && node --no-warnings dist/scripts/create/CreateItems.js",
"GetInventory": "tsc && node --no-warnings dist/scripts/getInventory.js",
"GetOrderStatus": "tsc && node --no-warnings dist/scripts/create/GetInscriptionOrder.js",
"GetOrderItems": "tsc && node --no-warnings dist/scripts/create/GetOrderItems.js",
"CreateItemsInBatches": "tsc && node --no-warnings dist/scripts/create/createItemBatch/CreateItemsInBatches.js",
"CreateItemOrder": "tsc && node --no-warnings dist/scripts/create/createItemBatch/CreateItemOrder.js",
"AddItemsToOrder": "tsc && node --no-warnings dist/scripts/create/createItemBatch/AddItemsToOrder.js",
"CommitOrder": "tsc && node --no-warnings dist/scripts/create/createItemBatch/CommitOrder.js",
"PayOrder": "tsc && node --no-warnings dist/scripts/create/createItemBatch/PayOrder.js",
"CreateNextItemBatch": "tsc && node --no-warnings dist/scripts/create/createItemBatch/CreateNextItemBatch.js",
"BurnItem": "tsc && node --no-warnings dist/scripts/create/BurnItem.js",
"CraftItems": "tsc && node --no-warnings dist/scripts/create/CraftItems.js",
"InscribeItems": "tsc && node --no-warnings dist/scripts/create/createItemBatch/InscribeItems.js",
"sendAllOrderItems": "tsc && node --no-warnings dist/scripts/util/sendAllOrderItems.js",
"transferSingleItem": "tsc && node --no-warnings dist/scripts/transfer/TransferSingleItem.js",
"test": "echo \"Error: no test specified\" && exit 1",
"startServer": "tsc && node --no-warnings dist/webhookServer/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HandCash/handcash-ordinals-minter.git"
},
"keywords": [
"ordinals",
"nft",
"bsv",
"handcash"
],
"author": "HandCash",
"license": "ISC",
"bugs": {
"url": "https://github.com/HandCash/handcash-ordinals-minter/issues"
},
"homepage": "https://github.com/HandCash/handcash-ordinals-minter#readme",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@handcash/handcash-connect": "0.7.7-alpha",
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"bsv-wasm": "^2.0.1",
"commander": "^10.0.1",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"nanoid": "^4.0.2",
"p-limit": "^4.0.0",
"uuid": "^9.0.0"
}
}