-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "engram-nodejs",
"version": "0.1.3",
"description": "High-level Node.js toolkit for reading and writing Engram (.eng) archives with prebuilt native binaries.",
"repository": {
"type": "git",
"url": "https://github.com/Manifest-Humanity/engram-nodejs.git"
},
"main": "lib/index.js",
"license": "MIT",
"types": "lib/index.d.ts",
"scripts": {
"build": "pnpm exec napi build --platform --release --cargo-cwd ./crates/engram-napi dist && pnpm run build:ts",
"build:debug": "pnpm exec napi build --platform --cargo-cwd ./crates/engram-napi dist && pnpm run build:ts",
"build:ts": "tsc",
"test": "pnpm run build:debug && vitest run",
"test:watch": "vitest",
"example": "pnpm run build:debug && ts-node examples/basic-usage.ts",
"prepublishOnly": "pnpm run build",
"build:local": "node ./scripts/build-local.mjs",
"bench": "node ./benchmarks/run-benchmarks.mjs"
},
"napi": {
"name": "engram-nodejs",
"triples": {
"defaults": true,
"additional": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu"
]
}
},
"keywords": [
"archive",
"sqlite",
"vfs",
"engram",
"napi-rs"
],
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"better-sqlite3": "^9.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.8.0+sha1.9922e8b650d393700209ccd81e0ebdbcbe43b0d3"
}