-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.55 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": "@socioprophet/hellgraph",
"version": "0.4.46",
"description": "HellGraph \u2014 TypeScript OpenCog-compatible AtomSpace metagraph engine (PLN, ECAN, pattern matcher, SPARQL/Gremlin, SHACL, Atomese, StorageNode federation). Polyglot sibling of the Rust hellgraph crate.",
"license": "UNLICENSED",
"type": "commonjs",
"main": "ts/dist/index.js",
"module": "ts/dist/index.mjs",
"types": "ts/dist/index.d.ts",
"exports": {
".": {
"types": "./ts/dist/index.d.ts",
"import": "./ts/dist/index.mjs",
"require": "./ts/dist/index.js"
}
},
"files": [
"ts/dist",
"bin"
],
"scripts": {
"build": "tsup",
"prepare": "tsup",
"typecheck": "tsc -p ts/tsconfig.json --noEmit",
"test": "node --import tsx --test ts/src/*.test.ts",
"check:dist": "tsup && git diff --quiet -- ts/dist || (echo 'ERROR: ts/dist is stale vs ts/src \u2014 run: npm run build, then commit ts/dist' && exit 1)",
"check:kko": "node --import tsx scripts/check-kko-provenance.mjs"
},
"optionalDependencies": {
"autobase": "7.28.1",
"corestore": "7.11.0",
"hyperbee": "2.27.3",
"hypercore": "11.33.5",
"hyperswarm": "4.17.0",
"rocksdb": "^5.2.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"autobase": "7.28.1",
"corestore": "7.11.0",
"hyperbee": "2.27.3",
"hypercore": "11.33.5",
"hyperswarm": "4.17.0",
"rocksdb": "5.2.1",
"tsup": "8.5.1",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"bin": {
"hellgraph-superpeer": "bin/hellgraph-superpeer.mjs"
}
}