-
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.46 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.46 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": "@sourceregistry/node-totp",
"version": "1.0.8",
"description": "Node.js TOTP library for generating otpauth URIs and verifying time-based one-time passwords",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"docs:build": "typedoc src/index.ts --out docs --name \"node-totp\" --theme default --excludePrivate --excludeProtected"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SourceRegistry/node-totp.git"
},
"keywords": [
"totp",
"One-Time Password",
"TOTP",
"Security",
"otp",
"rfc6238",
"6238",
"base32",
"rfc4648",
"4648"
],
"author": "A.P.A. Slaa ([email protected])",
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/SourceRegistry/node-totp/issues"
},
"homepage": "https://sourceregistry.github.io/node-totp",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@vitest/ui": "^3.2.4",
"tsx": "^4.20.4",
"typescript": "^5.9.3",
"typedoc": "^0.28.14",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/git": "^10.0.1",
"@sourceregistry/semantic-release-jsr": "^1.0.1"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@sourceregistry/semantic-release-jsr",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"jsr.json",
"CHANGELOG.md"
],
"message": "node-totp(release): v${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
}