-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"name": "@eosrio/hyperion-plugin-core",
"version": "0.1.0",
"description": "A core library for developing plugins for Hyperion - a scalable Full History API Solution for Antelope-based blockchains",
"homepage": "https://github.com/eosrio/hyperion-plugin-core#readme",
"bugs": {
"url": "https://github.com/eosrio/hyperion-plugin-core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eosrio/hyperion-plugin-core.git"
},
"license": "MIT",
"author": {
"name": "EOS Rio",
"url": "https://eosrio.io"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"publish": "npm publish --access public"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"peerDependencies": {
"fastify": "^5.4.0"
},
"keywords": [
"hyperion",
"eosio",
"antelope",
"blockchain",
"history",
"api",
"plugin",
"extension"
],
"files": [
"dist/",
"LICENSE",
"README.md"
]
}