-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
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
{
"name": "@colony/abis",
"version": "2.0.0",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"license": "GPL-3.0-only",
"engines": {
"node": "^18 || ^20 || ^22",
"pnpm": "^10"
},
"scripts": {
"build": "npm run clean && tsc --declaration --outDir dist",
"clean": "rimraf ./dist/*.js ./dist/*.ts",
"extract": "tsx scripts/extract-contract-abis.ts",
"lint": "eslint --ext .ts src",
"test": "tsx scripts/check-versions.ts",
"prepare": "husky install"
},
"dependencies": {
"abitype": "^1.0.7",
"commitlint": "^19.6.1",
"lodash": "^4.17.21",
"tsx": "^4.19.2"
},
"devDependencies": {
"@colony/eslint-config-colony": "^10.0.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/lodash": "^4.14.191",
"@types/mkdirp": "^1.0.2",
"@types/node": "^22.10.7",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^5.2.3",
"fast-glob": "^3.2.11",
"husky": "^8.0.3",
"mkdirp": "^1.0.4",
"prettier": "^3.4.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"yargs": "^17.3.1"
}
}