-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 1.98 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 1.98 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
{
"name": "spoken-token",
"version": "2.0.4",
"description": "TOTP but you say it out loud. Derive time-rotating, human-speakable verification tokens from a shared secret.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"provenance": true
},
"sideEffects": false,
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./counter": {
"types": "./dist/counter.d.ts",
"import": "./dist/counter.js"
},
"./wordlist": {
"types": "./dist/wordlist.d.ts",
"import": "./dist/wordlist.js"
},
"./encoding": {
"types": "./dist/encoding.d.ts",
"import": "./dist/encoding.js"
},
"./crypto": {
"types": "./dist/crypto.d.ts",
"import": "./dist/crypto.js"
}
},
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"homepage": "https://github.com/forgesworn/spoken-token",
"keywords": [
"totp",
"otp",
"one-time-password",
"2fa",
"mfa",
"verification",
"spoken-word",
"voice",
"passphrase",
"token",
"pin",
"hmac",
"authentication",
"security",
"crypto",
"identity",
"verbal-verification",
"rideshare",
"phone-auth",
"offline-first",
"zero-dependency",
"wordlist",
"typescript"
],
"author": "forgesworn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/spoken-token.git"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.0.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0"
},
"funding": {
"type": "lightning",
"url": "lightning:thedonkey@strike.me"
}
}