-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
47
48
49
50
51
52
{
"name": "@hinter-net/hinter-core",
"version": "0.2.1",
"description": "Reference implementation of the hinter protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hinter-net/hinter-core.git"
},
"main": "src/index.js",
"type": "module",
"bin": {
"hinter-core": "src/index.js",
"hinter-core-initialize": "src/initialize.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^22.19.0"
},
"scripts": {
"build:package": "npm pack",
"initialize": "node src/initialize.js --data-dir $(pwd)/hinter-core-data",
"start": "node src/index.js --data-dir $(pwd)/hinter-core-data",
"lint": "npm run format:check && npm run eslint:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"eslint:check": "eslint --report-unused-disable-directives --cache --ext js,mjs,cjs . --max-warnings 0",
"eslint:fix": "npm run eslint:check --fix",
"prepare": "husky"
},
"dependencies": {
"@api3/promise-utils": "^0.4.0",
"b4a": "^1.6.7",
"chokidar": "^4.0.3",
"corestore": "^7.4.5",
"hyperdrive": "^12.3.0",
"hyperswarm": "^4.11.7",
"localdrive": "^2.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"husky": "^9.1.7",
"prettier": "^3.6.2"
}
}