-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "evm-providers",
"version": "0.4.6",
"description": "JSON-RPC Provider Registry for EVM chains",
"author": {
"name": "Timur Badretdinov",
"url": "https://github.com/Destiner"
},
"keywords": [
"viem",
"ethereum",
"evm",
"json-rpc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scope-sh/evm-providers.git"
},
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist",
"src",
"package.json",
"tsconfig.json"
],
"scripts": {
"test": "vitest run",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"src/**/*.ts\"",
"lint:prettier": "prettier -c \"src/**/*.{json,js,ts}\"",
"typecheck": "tsc --noEmit",
"build": "tsc --p tsconfig.build.json",
"prepack": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/bun": "^1.1.8",
"eslint": "^9.11.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vitest": "^2.0.5"
}
}