-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.12 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.12 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "canary-kit",
"version": "2.7.0",
"description": "Deepfake-proof identity verification. Open protocol, minimal dependencies.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./wordlist": {
"types": "./dist/wordlist.d.ts",
"import": "./dist/wordlist.js"
},
"./nostr": {
"types": "./dist/nostr.d.ts",
"import": "./dist/nostr.js"
},
"./beacon": {
"types": "./dist/beacon.d.ts",
"import": "./dist/beacon.js"
},
"./token": {
"types": "./dist/token.d.ts",
"import": "./dist/token.js"
},
"./encoding": {
"types": "./dist/encoding.d.ts",
"import": "./dist/encoding.js"
},
"./session": {
"types": "./dist/session.d.ts",
"import": "./dist/session.js"
},
"./sync": {
"types": "./dist/sync.d.ts",
"import": "./dist/sync.js"
}
},
"files": [
"dist/",
"LICENSE",
"CANARY.md",
"NIP-CANARY.md",
"INTEGRATION.md",
"SECURITY.md",
"llms.txt",
"llms-full.txt"
],
"scripts": {
"build": "tsc",
"dev": "vite --config vite.config.ts",
"build:app": "vite build --config vite.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"bench": "vitest bench",
"demo": "npm run build:app && serve docs -l 8787",
"build:single": "vite build --config vite.singlefile.config.ts && cp dist-single/index.html canary.html && echo '✓ canary.html ready'",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:offline": "playwright test --config e2e/playwright.config.ts --project=offline",
"test:e2e:online": "playwright test --config e2e/playwright.config.ts --project=online",
"test:e2e:protocol": "playwright test --config e2e/playwright.config.ts --project=protocol",
"test:e2e:ui": "playwright test --config e2e/playwright.config.ts --ui",
"record": "node docs/record/record.js",
"record:short": "node docs/record/record.js short",
"record:extended": "node docs/record/record.js extended",
"record:silent": "node docs/record/record.js --no-voice"
},
"keywords": [
"canary",
"canary-kit",
"verification",
"identity",
"duress",
"safe-word",
"nostr",
"hmac",
"totp",
"deepfake",
"voice-clone",
"meshtastic",
"liveness",
"dead-mans-switch",
"coercion-resistance",
"spoken-word",
"bidirectional-verification",
"offline-first",
"minimal-dependencies",
"voice-phishing",
"vishing",
"anti-fraud",
"phone-verification",
"family-safety"
],
"author": "forgesworn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/canary-kit.git"
},
"homepage": "https://canary.trotters.cc/",
"bugs": {
"url": "https://github.com/forgesworn/canary-kit/issues"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@playwright/test": "^1.58.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^24.12.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.0.3",
"geohash-kit": "^1.5.1",
"maplibre-gl": "^5.20.2",
"nostr-tools": "^2.23.3",
"qrcode-generator": "^2.0.4",
"semantic-release": "^25.0.0",
"serve": "^14.2.6",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0",
"vite-plugin-singlefile": "^2.3.2",
"vitest": "^4.1.0",
"ws": "^8.19.0"
},
"dependencies": {
"@forgesworn/shamir-words": "^1.0.2",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"nsec-tree": "^1.4.0",
"spoken-token": "^2.0.2"
},
"funding": {
"type": "lightning",
"url": "lightning:thedonkey@strike.me"
}
}