-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "@myjoypin/node-ucan",
"version": "0.1.0",
"description": "UCAN for Node.js",
"author": "Dmytro Savranskyi <ingvuil@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/myjoypin/node-ucan.git"
},
"main": "./index.node",
"module": "./index.mjs",
"exports": {
".": {
"require": "./index.node",
"import": "./index.mjs"
}
},
"scripts": {
"install": "node ./install.js",
"test": "cargo test",
"cargo-build": "cargo build --message-format=json > cargo.log",
"cross-build": "cross build --message-format=json > 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"
},
"dependencies": {
"@neon-rs/cli": "^0.1",
"node-abi": "^3.65"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}