-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 932 Bytes
/
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
{
"name": "w3bstream-client-js",
"version": "3.1.0",
"description": "Official W3bstream Client for JS/TS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/machinefi/w3bstream-client-js.git"
},
"keywords": [
"w3bstream"
],
"author": "MachineFi Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/machinefi/w3bstream-client-js/issues"
},
"homepage": "https://github.com/machinefi/w3bstream-client-js#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"jest": "^29.6.1",
"prettier": "2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"rxjs": "^7.8.1"
}
}