-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
99 lines (99 loc) · 2.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@axelarjs/utils",
"version": "0.1.12",
"publishConfig": {
"access": "public"
},
"description": "General purpose utils for axelarjs",
"repository": {
"type": "git",
"url": "git+https://github.com/axelarnetwork/axelarjs"
},
"files": [
"./build",
"./react",
"./index.js",
"./index.d.ts",
"./array.js",
"./array.d.ts",
"./case-conversion.js",
"./case-conversion.d.ts",
"./function.js",
"./function.d.ts",
"./guard.js",
"./guard.d.ts",
"./hex.js",
"./hex.d.ts",
"./http-client.js",
"./http-client.d.ts",
"./monad.js",
"./monad.d.ts",
"./record.js",
"./record.d.ts",
"./string.js",
"./string.d.ts",
"./types.js",
"./types.d.ts"
],
"exports": {
".": {
"import": "./build/module/index.js",
"require": "./build/commonjs/index.js"
},
"./*": {
"import": "./build/module/*.js",
"require": "./build/commonjs/*.js"
},
"./react": {
"import": "./build/module/react/index.js",
"require": "./build/commonjs/react/index.js"
}
},
"scripts": {
"test": "vitest --run src",
"compile": "tsc --noEmit",
"build": "scripts/build.sh",
"clean": "scripts/clean.sh",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"docgen": "typedoc",
"deploy:docs": "gh-pages -d docs -e utils"
},
"keywords": [],
"author": "",
"license": "LicenseRef-LICENSE",
"devDependencies": {
"@axelarjs/config": "workspace:*",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.2.2",
"@tsconfig/strictest": "^2.0.4",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20.11.30",
"@types/ramda": "^0.29.11",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react": "^4.2.1",
"fast-check": "^3.17.0",
"gh-pages": "^6.1.1",
"happy-dom": "^13.10.1",
"matchers": "link:@testing-library/jest-dom/matchers",
"rambda": "^9.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vitest": "^1.4.0"
},
"dependencies": {
"immer": "^10.0.4",
"isomorphic-unfetch": "^4.0.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"ramda": "^0.29.1",
"tiny-invariant": "^1.3.3"
}
}