-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "@dimo-network/data-sdk",
"version": "1.2.4",
"description": "DIMO Data SDK for JavaScript",
"main": "dist/index.js",
"author": "James Li",
"contributors": [],
"license": "Apache-2.0",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"data-sdk",
"dimo",
"dimo-network"
],
"homepage": "https://dimo.org/developers",
"bugs": {
"url": "https://github.com/DIMO-Network/data-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIMO-Network/data-sdk.git"
},
"scripts": {
"test": "jest",
"build": "tsc && npx rollup -c"
},
"dependencies": {
"axios": "^1.6.7",
"fs": "^0.0.1-security",
"jwt-decode": "^4.0.0",
"rxjs": "^7.8.1",
"web3": "^4.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/dotenv-safe": "^8.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/rollup-plugin-node-globals": "^1.4.5",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"rollup": "^4.29.1",
"rollup-plugin-node-globals": "^1.4.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"types": "./dist/index.d.ts"
}