-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"name": "@danielabalde/token-client",
"version": "1.1.0",
"description": "Smart Contracts to generalize and simplify operations with fungible and non-fungible tokens",
"files": [
"contracts/*.sol",
"contracts/concretes/*.sol",
"artifacts/contracts/TokenClient.sol/TokenClient.json",
"artifacts/contracts/TokenAbstraction.sol/TokenAbstraction.json",
"artifacts/contracts/concretes/TokenERC20.sol/TokenERC20.json",
"artifacts/contracts/concretes/TokenERC721.sol/TokenERC721.json",
"artifacts/contracts/concretes/TokenERC1155.sol/TokenERC1155.json",
"artifacts/contracts/concretes/TokenLSP7.sol/TokenLSP7.json",
"artifacts/contracts/concretes/TokenLSP8.sol/TokenLSP8.json",
"scripts/TokenClient.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daniel Abalde",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/DanielAbalde/Token-Client"
},
"bugs": {
"url": "https://github.com/DanielAbalde/Token-Client/issues"
},
"homepage": "https://github.com/DanielAbalde/Token-Client",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"marketplace",
"erc20",
"nft",
"multitokens",
"erc721",
"erc1155",
"generic",
"token"
],
"dependencies": {
"@lukso/lsp-smart-contracts": "^0.8.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@openzeppelin/contracts": "^4.8.1",
"hardhat": "^2.12.6"
}
}