-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "zudb",
"version": "0.0.1",
"description": "The JavaScript client for zu, an embedded property-graph database",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tamnd/zu-node.git"
},
"homepage": "https://zu.dev",
"keywords": [
"graph",
"database",
"embedded",
"gql",
"cypher"
],
"engines": {
"node": ">= 24"
},
"type": "commonjs",
"main": "./zudb.cjs",
"types": "./zudb.d.cts",
"exports": {
".": {
"import": {
"types": "./zudb.d.mts",
"default": "./zudb.mjs"
},
"require": {
"types": "./zudb.d.cts",
"default": "./zudb.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"binding.cjs",
"binding.d.cts",
"zudb.cjs",
"zudb.mjs",
"zudb.d.cts",
"zudb.d.mts",
"README.md",
"LICENSE"
],
"napi": {
"binaryName": "zudb",
"dtsHeaderFile": "types/header.d.ts",
"targets": [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc"
]
},
"scripts": {
"build": "napi build --platform --release --js binding.cjs --dts binding.d.cts",
"build:debug": "napi build --platform --js binding.cjs --dts binding.d.cts",
"test": "node --test \"test/*.test.mjs\"",
"test:temporal": "node --harmony-temporal --test \"test/*.test.mjs\"",
"test:bun": "bun test --timeout 60000 test/",
"test:deno": "deno test --no-check --allow-read --allow-write --allow-env --allow-ffi \"test/*.test.mjs\"",
"corpus": "node conformance/cli.mjs",
"check:types": "tsc --noEmit --project test/types/tsconfig.json",
"check:package": "attw --pack .",
"check:api": "api-extractor run --verbose",
"check:api:update": "api-extractor run --local",
"reference": "node tools/reference.mjs reference",
"bench": "node bench/query.mjs",
"bench:append": "node bench/append.mjs",
"bench:arrow": "node bench/arrow.mjs",
"bench:columnar": "node bench/columnar.mjs",
"bench:load": "node bench/load.mjs",
"bench:prepared": "node bench/prepared.mjs",
"bench:register": "node bench/register.mjs",
"bench:temporal": "node --harmony-temporal bench/query.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@microsoft/api-extractor": "^7.58.12",
"@napi-rs/cli": "^3.8.6",
"@types/node": "^26.2.0",
"apache-arrow": "^21.2.0",
"typedoc": "^0.28.20",
"typescript": "^5.9.3"
}
}