forked from rust-nostr/nostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.14 KB
/
package.json
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
{
"name": "@rust-nostr/nostr-sdk-js",
"version": "0.1.0",
"description": "High level Nostr client library.",
"keywords": [
"nostr",
"sdk",
"rust",
"javascript"
],
"license": "MIT",
"homepage": "https://github.com/rust-nostr/nostr",
"repository": {
"type": "git",
"url": "git+https://github.com/rust-nostr/nostr.git"
},
"bugs": {
"url": "https://github.com/rust-nostr/nostr/issues"
},
"author": {
"name": "Yuki Kishimoto",
"email": "[email protected]",
"url": "https://github.com/yukibtc"
},
"funding": [
{
"type": "individual",
"url": "https://getalby.com/p/yuki"
}
],
"main": "pkg/nostr_sdk_js.js",
"types": "pkg/nostr_sdk_js.d.ts",
"files": [
"pkg/nostr_sdk_js_bg.wasm.js",
"pkg/nostr_sdk_js_bg.wasm.d.ts",
"pkg/nostr_sdk_js.js",
"pkg/nostr_sdk_js.d.ts"
],
"devDependencies": {
"wasm-pack": "^0.10.2"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "WASM_PACK_ARGS=--release ./scripts/build.sh",
"build:dev": "WASM_PACK_ARGS=--dev ./scripts/build.sh",
"package": "npm run build && npm pack"
}
}