-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 982 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
43
44
{
"name": "galaxis-feed-be-js",
"version": "1.0.0",
"description": "A package for interacting with the Bee API",
"main": "dist/cjs/index.js",
"types": "/dist/types/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ethercatds/galaxis-feed-be-js.git"
},
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"bee",
"feed",
"galaxis"
],
"author": "Ferenc Mucsi",
"license": "MIT",
"dependencies": {
"@ethersphere/bee-js": "^6.7.4",
"axios": "^1.7.7",
"ethers": "^6.13.4"
},
"devDependencies": {
"@types/node": "^22.9.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}