forked from oxheadalpha/nft-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "@oxheadalpha/fa2-interfaces",
"version": "7.3.0",
"description": "Typescript interfaces for FA2 Tezos smart contracts",
"repository": "https://github.com/oxheadalpha/nft-tutorial.git",
"homepage": "https://github.com/oxheadalpha/nft-tutorial/blob/master/packages/fa2_interfaces/README.md",
"keywords": [
"tezos",
"smart contracts",
"NFT",
"FA2",
"TZIP-12",
"TZIP-21"
],
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"clear": "yarn rimraf dist",
"build:tests": "tsc -p tsconfig.test.json",
"build": "yarn tsc -p .",
"prepare": "yarn clear && yarn build",
"test": "jest"
},
"devDependencies": {
"@jest/types": "^27.4.2",
"@types/jest": "^27.0.3",
"@types/valid-url": "^1.0.3",
"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": {
"@taquito/taquito": "^16.0.0",
"@taquito/tzip12": "^16.0.0",
"@taquito/tzip16": "^16.0.0",
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"bignumber.js": "^9.1.1",
"is-email": "^1.0.2",
"is-ipfs": "^6.0.2",
"kleur": "^4.1.4",
"valid-url": "^1.0.9"
},
"gitHead": "1c80cc3e323b7dcadaf1ff8c3b80ebfe8d407369"
}