-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "pragma-deployer",
"description": "Deployer of every Pragma contracts.",
"version": "0.0.1",
"keywords": [
"blockchain",
"oracle",
"pragma",
"starknet",
"evm"
],
"repository": {
"type": "git",
"url": "https://github.com/astraly-labs/pragma-monorepo.git"
},
"license": "MIT",
"homepage": "https://www.pragma.build/",
"module": "index.ts",
"type": "module",
"dependencies": {
"commander": "12.1.0",
"dotenv": "^16.4.5",
"pragma-utils": "file:../pragma-utils"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@openzeppelin/hardhat-upgrades": "^3.4.0",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"ethers": "^6.13.3",
"hardhat": "^2.22.11",
"hardhat-deploy": "^0.9.24",
"hardhat-switch-network": "^1.1.1",
"starknet": "^6.11.0",
"ts-node": "^10.9.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"deployer": "bun run src/index.ts deploy",
"verifier": "bun run src/index.ts verify"
}
}