-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "@ceramic-sdk/flight-sql-client",
"version": "0.11.0",
"description": "A FlightSQL client. Currently only supports Node.js",
"main": "index.js",
"types": "index.d.ts",
"files": ["index.js", "index.d.ts"],
"keywords": ["ceramic", "FlightSQL"],
"napi": {
"name": "flight-sql-client",
"triples": {
"defaults": false,
"additional": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.18.4",
"@swc-node/register": "^1.10.6",
"@taplo/cli": "^0.7.0"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build:debug": "napi build --platform",
"build": "napi build --platform --release --target $(rustc -vV | sed -n 's|host: ||p')",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage",
"prepublishOnly": "napi prepublish -t npm",
"format": "pnpm format:rs && pnpm format:toml",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"universal": "napi universal",
"version": "napi version"
},
"jest": {
"extensionsToTreatAsEsm": [".ts"],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/ceramicnetwork/rust-ceramic",
"directory": "sdk/packages/flight-sql-client"
}
}