-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@forgesworn/nwc-kit",
"version": "0.1.7",
"description": "Small, security-focused Nostr Wallet Connect client for TypeScript",
"author": "ForgeSworn",
"license": "MIT",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/TheCryptoDonkey"
},
{
"type": "individual",
"url": "https://ko-fi.com/brays"
},
{
"type": "individual",
"url": "https://geyser.fund/project/forgesworn"
}
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"files": [
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md",
"SECURITY.md",
"THREAT-MODEL.md",
"llms.txt"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./extensions/05": {
"types": "./dist/extensions/05.d.ts",
"import": "./dist/extensions/05.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:protocol": "vitest run test/nip44-vector.test.ts",
"test:coverage": "vitest run --coverage",
"check:no-node-imports": "! grep -rEn \"from ['\\\"]node:|require\\(['\\\"]node:\" src --include='*.ts'",
"check:browser-bundle": "esbuild dist/index.js --bundle --platform=browser --outfile=/dev/null --log-level=error && esbuild dist/extensions/05.js --bundle --platform=browser --outfile=/dev/null --log-level=error",
"check:pack": "npm pack --dry-run",
"typecheck:site": "tsc --noEmit -p site/tsconfig.json",
"build:site": "node scripts/build-site.mjs",
"check": "npm run typecheck && npm run typecheck:site && npm run check:no-node-imports && npm run test:coverage && npm run build && npm run check:browser-bundle && npm run build:site && npm run check:pack && npm audit",
"prepublishOnly": "npm run typecheck && npm run check:no-node-imports && npm run test:coverage && npm run build && npm run check:browser-bundle && npm run check:pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forgesworn/nwc-kit.git"
},
"homepage": "https://nwc-kit.forgesworn.dev",
"bugs": {
"url": "https://github.com/forgesworn/nwc-kit/issues"
},
"keywords": [
"bitcoin",
"lightning",
"nostr",
"nwc",
"nip47",
"nip44"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"nostr-tools": "2.24.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.0",
"esbuild": "^0.28.0",
"tsup": "^8.5.0",
"typescript": "^6.0.0",
"vitest": "^4.1.0"
},
"overrides": {
"tsup": {
"esbuild": "^0.28.2"
}
}
}