This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
81 lines (81 loc) · 2.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "unidata.js",
"version": "0.8.0",
"description": "💡 Providing easy access to human friendly Web3 data.",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist",
"types"
],
"scripts": {
"prepare": "husky install",
"build": "tsup",
"dev": "npm run docs:dev",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIYgod/Unidata.git"
},
"keywords": [
"unidata",
"web3",
"ens",
"crossbell"
],
"author": "DIYgod",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIYgod/Unidata/issues"
},
"homepage": "https://github.com/DIYgod/Unidata#readme",
"dependencies": {
"@types/lodash": "^4.14.192",
"@urql/core": "^4.0.3",
"axios": "^1.3.5",
"axios-retry": "^3.4.0",
"crossbell": "^1.1.0",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mime": "^3.0.0",
"viem": "^0.3.29"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-brands-svg-icons": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/vue-fontawesome": "3.0.3",
"@types/graceful-fs": "4.1.6",
"@types/lodash-es": "^4.17.7",
"@types/mime": "3.0.1",
"@types/node": "18.15.11",
"@vitejs/plugin-vue": "4.1.0",
"@vuepress/client": "2.0.0-beta.45",
"@vuepress/plugin-docsearch": "2.0.0-beta.45",
"@vuepress/plugin-register-components": "2.0.0-beta.45",
"element-plus": "2.3.2",
"husky": "8.0.3",
"less": "4.1.3",
"lint-staged": "13.2.0",
"markdown-it": "^13.0.1",
"prettier": "2.8.7",
"tsup": "^6.7.0",
"typescript": "5.0.4",
"vite": "4.2.1",
"vue": "3.2.47",
"vuepress": "2.0.0-beta.45"
}
}