-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"scripts": {
"test": "ts-node test.ts",
"build": "tsc",
"sendNpm": "tsc && cd ./dist && npm version patch && npm publish --access=public",
"gendocs": "rm -rf ./docs && mkdir ./docs && mkdir ./etc && tsc && npx api-extractor run --local && api-documenter yaml --input-folder ./temp && node ./dev/gendoc.js && rm -rf etc && rm -rf temp && rm -rf yaml"
},
"devDependencies": {
"@types/node": "^20.14.0",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"viem": "^2.13.3"
},
"name": "@lunarislab/web3tokens",
"description": "A library for interacting with EVM tokens such as ERC20, ERC721 and ERC1155.",
"version": "1.0.2",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lunaris-lab/web3tokens.git"
},
"keywords": [
"ERC20",
"ERC721",
"ERC1155",
"library",
"viem",
"web3",
"ethereum",
"tokens",
"blockchain",
"api",
"abi",
"evm"
],
"author": "iyarsius",
"license": "ISC",
"bugs": {
"url": "https://github.com/lunaris-lab/web3tokens/issues"
},
"homepage": "https://github.com/lunaris-lab/web3tokens#readme"
}