-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.85 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
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.0.20",
"@unhead/vue": "^1.10.4",
"@vueuse/core": "^11.0.3",
"evm-providers": "^0.4.6",
"radix-vue": "^1.9.5",
"viem": "^2.21.3",
"vue": "^3.5.8",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/node": "^20.16.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.8",
"dotenv": "^16.4.5",
"eslint": "^9.11.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-vue": "^9.28.0",
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.7",
"vite-plugin-vue-devtools": "^7.4.4",
"vite-tsconfig-paths": "^5.0.1",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.6"
}
}