-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.48 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
{
"name": "slatedb-node",
"version": "0.2.1",
"description": "Node.js bindings for SlateDB via napi-rs",
"homepage": "https://github.com/gadget-inc/slatedb-node",
"bugs": {
"url": "https://github.com/gadget-inc/slatedb-node/issues"
},
"license": "MIT",
"author": {
"name": "SlateDB Authors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadget-inc/slatedb-node.git"
},
"files": [
"lib",
"native.cjs",
"README.md"
],
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"artifacts": "napi artifacts",
"create-npm-dirs": "napi create-npm-dirs",
"build": "pnpm run clean && pnpm run build:debug && pnpm run build:ts",
"build:debug": "napi build --platform --no-js --dts target/napi-rs/index.d.ts",
"build:release": "napi build --platform --release --no-js --dts target/napi-rs/index.d.ts",
"build:ts": "tsc -p tsconfig.build.json",
"clean": "rimraf *.node",
"lint": "pnpm run --aggregate-output '/^lint:(?!fix).*/'",
"lint:cspell": "cspell . --no-progress --show-suggestions --show-context",
"lint:fix": "oxfmt && oxlint --type-aware --fix",
"lint:oxfmt": "oxfmt --check",
"lint:oxlint": "oxlint --type-aware --deny-warnings",
"prepublishOnly": "napi pre-publish -t npm",
"release": "pnpm run build:release && pnpm run build:ts",
"test": "pnpm run build:debug && pnpm run build:ts && vitest run"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@napi-rs/cli": "^3.2.0",
"@types/node": "^24.5.2",
"cspell": "^9.6.4",
"execa": "^5.1.1",
"oxfmt": "^0.32.0",
"oxlint": "^1.49.0",
"oxlint-tsgolint": "^0.14.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"napi": {
"binaryName": "slatedb-node",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl"
]
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.11.0",
"pnpm": {
"overrides": {
"diff": "^4.0.4",
"rollup": "^4.59.0"
}
}
}