-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.28 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@eco-foundation/chains",
"version": "2.3.3",
"description": "A TypeScript library built with pnpm",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rimraf dist",
"build": "pnpm clean && tsup",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"format": "pnpm lint:fix && pnpm prettier:fix",
"format:check": "pnpm lint && pnpm prettier",
"tf": "pnpm test && pnpm format",
"prepare": "ts-patch install && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eco/eco-chains.git"
},
"author": "Stoyan Dimitrov<s.dimitrov19@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@eslint/js": "^9.23.0",
"@hyperlane-xyz/cli": "^16.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/eslint-plugin-mocha": "^10.4.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.5",
"@types/semver-utils": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.28.0",
"concurrently": "^9.1.2",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"semver-utils": "^1.1.4",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"typia": "^8.0.4",
"viem": "^2.37.8"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}