-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "live-evm-rpc",
"description": "Get Public Live EVM RPC url easily",
"author": "codev911",
"version": "1.3.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsup",
"format": "prettier --write lib/*.ts lib/**/*.ts tests/*.ts",
"test": "jest",
"generate:chain": "tsx ./lib/chain/fork.chain.ts && tsx ./lib/chain/parse.chain.ts && npm run format",
"release": "npm run build && npm publish"
},
"devDependencies": {
"@swc/core": "^1.3.105",
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@types/node": "^14",
"dotenv": "^16.4.1",
"fs": "^0.0.1-security",
"jest": "^29.7.0",
"path": "^0.12.7",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"url": "^0.11.3",
"util": "^0.12.5",
"tsx": "^4.19.1"
},
"dependencies": {
"axios": "^1.6.6"
},
"keywords": [
"live-evm-rpc",
"evm",
"public-rpc",
"rpc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codev911/live-evm-rpc.git"
}
}