-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "gemforge",
"version": "2.15.0",
"description": "Command-line tool for building, deploying and upgrading Diamond Standard contracts on EVM chains.",
"bin": {
"gemforge": "./bin/gemforge.js"
},
"type": "module",
"types": "./build/src/index.d.ts",
"exports": "./build/src/index.js",
"files": [
"src",
"build",
"bin",
"templates",
"README.md",
"LICENSE.md",
"CHANGELOG.md",
"package.json"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"scripts": {
"prepare": "husky install && npx husky add .husky/commit-msg 'npx commitlint --edit $1'",
"format": "biome format",
"format:write": "biome format --write",
"lint": "biome lint",
"lint:write": "biome lint --write",
"dev": "tsc -b -w tsconfig.json",
"build": "rm -fr build/* && tsc -p tsconfig.json",
"test": "mocha",
"run-foundry-testnet": "anvil --port 58545",
"run-hardhat-testnet": "hardhat node --port 58546",
"prepublishOnly": "npm run build",
"release": "standard-version && git push --follow-tags origin master && npm publish"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/lodash.get": "^4.4.7",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.16",
"@types/semver": "^7.5.0",
"@types/tmp": "^0.2.3",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"eslint": "8.27.0",
"hardhat": "^2.17.3",
"husky": "^8.0.2",
"mocha": "^10.2.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true,
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@solidity-parser/parser": "^0.16.1",
"bigval": "^1.7.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"ethers": "^6.7.1",
"execa": "^7.2.0",
"glob": "^10.3.3",
"lodash.get": "^4.4.2",
"semver": "^7.5.4",
"spdx-license-ids": "^3.0.13",
"tmp": "^0.2.1"
}
}