-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.37 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": "@nilfoundation/hardhat-plugin",
"version": "0.19.0",
"description": "Custom Hardhat plugin to enable seamless deployment and interaction with applications within =nil;",
"repository": {
"type": "git",
"url": "git+https://github.com/NilFoundation/nil-hardhat-plugin"
},
"homepage": "https://github.com/NilFoundation/nil-hardhat-plugin#readme",
"bugs": {
"url": "https://github.com/NilFoundation/nil-hardhat-plugin/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "mocha \"test/integration.test.ts\"",
"pub": "npm run build && npm publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nilfoundation/niljs": "0.21.0",
"ethers": "^6.12.1",
"hardhat": "^2.22.4",
"ini": "^5.0.0",
"@types/ini": "^4.1.1",
"viem": "^2.16.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"mocha": "^10.8.1",
"ts-node-transpile-only": "^10.9.2",
"dotenv": "^16.4.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": ["dist"],
"simple-git-hooks": {
"pre-commit": "npm run lint"
}
}