-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "@oxheadalpha/tznft",
"version": "10.1.0",
"description": "CLI tool and tutorial on how to create FA2 non-fungible tokens on Tezos",
"repository": "https://github.com/oxheadalpha/nft-tutorial.git",
"homepage": "https://github.com/oxheadalpha/nft-tutorial/blob/master/packages/tznft/README.md",
"keywords": [
"tezos",
"smart contracts",
"NFT",
"FA2",
"TZIP-12",
"TZIP-21"
],
"license": "MIT",
"scripts": {
"build:tests": "yarn tsc -p tsconfig.test.json",
"build": "yarn build-contract && yarn build-ts",
"clear": "yarn rimraf dist",
"prepare": "yarn clear && yarn build",
"generate-contract": "yarn tzgen c contract_spec.json fa2_nft_asset",
"compile-contract": "yarn tzgen michelson fa2_nft_asset fa2_nft_asset",
"build-contract": "yarn generate-contract && yarn compile-contract",
"build-ts": "yarn tsc -p . && chmod +x dist/tznft.js",
"test-contract": "jest --runInBand",
"test": "(yarn build-contract && yarn start-sandbox && yarn test-contract) ; yarn kill-sandbox",
"tznft": "./dist/tznft.js"
},
"bin": {
"tznft": "./dist/tznft.js"
},
"files": [
"dist/*",
"ligo/*"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/types": "^27.4.2",
"@oxheadalpha/fa2-contracts": "^10.1.0",
"@types/async-retry": "^1.4.3",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@oxheadalpha/fa2-interfaces": "^10.1.0",
"@oxheadalpha/tezos-tools": "^10.1.0",
"@taquito/signer": "^17.0.0",
"@taquito/taquito": "^17.0.0",
"bignumber.js": "^9.1.1",
"child_process": "^1.0.2",
"commander": "^9.0.0",
"kleur": "^4.1.4",
"zod": "^3.11.6"
},
"gitHead": "1c80cc3e323b7dcadaf1ff8c3b80ebfe8d407369"
}