-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 996 Bytes
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
{
"name": "@socioprophet/hellgraph",
"version": "0.4.2",
"description": "HellGraph — 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"
],
"scripts": {
"build": "tsup",
"prepare": "tsup",
"typecheck": "tsc -p ts/tsconfig.json --noEmit",
"test": "node --import tsx --test ts/src/*.test.ts"
},
"optionalDependencies": {
"rocksdb": "^5.2.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"rocksdb": "5.2.1",
"tsup": "8.5.1",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}