-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "boid-token-evm",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/animuslabs/boid-token-evm.git",
"author": "Seth@Boid.com <51824327+mchosc@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@types/node": "^22.10.2",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"nodemon": "^3.1.9",
"solc": "^0.8.28",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc && tsc-alias -f && yarn copy-files",
"copy-files": "copyfiles -u 1 src/**/*.sol dist/",
"dev": "nodemon -w ./src -e ts,sol --exec \"yarn build\"",
"wallet:generate": "node ./dist/util/wallet.js"
},
"devDependencies": {
"@layerzerolabs/lz-evm-protocol-v2": "^3.0.36",
"@layerzerolabs/oapp-evm": "^0.3.0",
"@layerzerolabs/oft-evm": "^3.1.0",
"@openzeppelin/contracts": "^5.1.0",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"rimraf": "^6.0.1"
}
}