-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "on-chain-nfts",
"version": "1.0.2",
"description": "Get on-chain NFT mints/transfers/burns including their metadata",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "ts-node test.ts && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohammed-almujil/on-chain-nfts.git"
},
"keywords": [
"get",
"on-chain",
"nft",
"retrieve",
"mints",
"transfers",
"ERC721",
"ERC1155"
],
"author": "Mohammed Almujil",
"license": "ISC",
"bugs": {
"url": "https://github.com/mohammed-almujil/on-chain-nfts/issues"
},
"homepage": "https://github.com/mohammed-almujil/on-chain-nfts#readme",
"dependencies": {
"axios": "^1.3.3",
"web3": "^1.8.1"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^4.9.5"
}
}