forked from anders-torbjornsen/zem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 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
49
50
51
{
"name": "@anders-t/zem",
"version": "2.0.2",
"description": "A simple EVM & Starknet smart contract deployment system for Hardhat",
"author": "Anders-T | 0x80.eth <[email protected]>",
"keywords": [
"Ethereum",
"ethers",
"hardhat",
"starknet",
"cairo"
],
"license": "MIT",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/anders-torbjornsen/zem.git"
},
"bugs": {
"url": "https://github.com/anders-torbjornsen/zem/issues"
},
"homepage": "https://github.com/anders-torbjornsen/zem",
"scripts": {
"build": "tsc"
},
"types": "./lib/index.d.ts",
"files": [
"lib/",
"src/"
],
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@playmint/hardhat-starknet-compile": "^1.0.2",
"@playmint/hardhat-starknetjs": "^1.0.3",
"solc": "^0.8.16",
"starknet": "^3.9.0"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"hardhat": "^2.10.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"hardhat": "^2.10.1"
}
}