-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "@kurrent/bridge",
"version": "0.1.5",
"description": "",
"main": "./lib/index.js",
"scripts": {
"test": "tsc &&cargo test",
"test-js": "node --test \"**/*.test.js\"",
"cargo-build": "tsc &&cargo build --message-format=json-render-diagnostics > cargo.log",
"cross-build": "tsc &&cross build --message-format=json-render-diagnostics > cross.log",
"postcargo-build": "neon dist < cargo.log",
"postcross-build": "neon dist -m /target < cross.log",
"debug": "npm run cargo-build --",
"build": "npm run cargo-build -- --release",
"cross": "npm run cross-build -- --release",
"prepack": "tsc &&neon update",
"version": "neon bump --binaries platforms && git add .",
"release": "gh workflow run release-package.yml -f dryrun=false -f version=patch",
"dryrun": "gh workflow run publish.yml -f dryrun=true"
},
"author": "Kurrent, Inc",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"types": "./lib/index.d.ts",
"files": [
"lib/**/*.?({c,m}){t,j}s"
],
"neon": {
"type": "library",
"org": "@kurrent",
"prefix": "bridge-",
"platforms": [
"common",
"linux-arm64-musl",
"linux-x64-musl"
],
"load": "./src/load.ts"
},
"devDependencies": {
"@neon-rs/cli": "^0.1.82",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.11.16",
"typescript": "^5.3.3"
},
"dependencies": {
"@neon-rs/load": "^0.1.82"
},
"optionalDependencies": {
"@kurrent/bridge-win32-x64-msvc": "0.1.2",
"@kurrent/bridge-darwin-x64": "0.1.2",
"@kurrent/bridge-darwin-arm64": "0.1.2",
"@kurrent/bridge-linux-x64-gnu": "0.1.2",
"@kurrent/bridge-linux-arm64-gnu": "0.1.2",
"@kurrent/bridge-linux-arm64-musl": "0.1.2",
"@kurrent/bridge-linux-x64-musl": "0.1.2"
}
}