-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 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
{
"name": "ethereum-json-rpc",
"version": "1.0.0",
"description": "An interactive reference of the Ethereum node API",
"author": {
"name": "Timur Badretdinov",
"github": "https://github.com/Destiner"
},
"keywords": [
"ethereum",
"evm",
"json-rpc",
"devtools"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Destiner/ethereum-json-rpc.git"
},
"scripts": {
"generate:providers": "bun src/scripts/fetchProviders.ts",
"build": "vite build",
"dev": "vite",
"lint": "bun run lint:prettier && bun run lint:eslint",
"lint:prettier": "prettier -c \"src/**/*.{json,js,ts,vue}\"",
"lint:eslint": "eslint \"src/**/*.{js,ts,vue}\"",
"lint:stylelint": "stylelint \"src/**/*.{css,vue}\"",
"typecheck": "tsc --noEmit && vue-tsc --noEmit"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@unhead/vue": "^2.1.10",
"@vueuse/core": "^14.2.1",
"evm-providers": "^0.6.1",
"reka-ui": "^2.9.0",
"viem": "^2.47.0",
"vue": "^3.5.29",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/compiler-sfc": "^3.5.29",
"dotenv": "^17.3.1",
"eslint": "^10.0.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-vue": "^10.8.0",
"prettier": "^3.8.1",
"stylelint": "^17.4.0",
"stylelint-config-property-sort-order-smacss": "^11.1.0",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-vue-devtools": "^8.0.7",
"vite-tsconfig-paths": "^6.1.1",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.5"
}
}