-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.87 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.87 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
{
"name": "@sourceregistry/node-webauthn",
"version": "1.1.11",
"description": "Production-focused TypeScript helpers for WebAuthn registration and authentication flows in Node.js.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.es.js",
"require": "./dist/server.cjs.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.es.js",
"require": "./dist/client.cjs.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc && vite build",
"lint": "tsc --noEmit",
"preview": "vite preview",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"docs:build": "typedoc src/index.ts --out docs --name \"node-webauthn\" --theme default --excludePrivate --excludeProtected"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SourceRegistry/node-webauthn.git"
},
"keywords": [
"webauthn",
"passkey",
"fido2",
"authentication",
"typescript",
"node"
],
"author": "A.P.A. Slaa (a.p.a.slaa@projectsource.nl)",
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/SourceRegistry/node-webauthn/issues"
},
"homepage": "https://github.com/SourceRegistry/node-webauthn#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.17.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.0.3",
"@sourceregistry/semantic-release-jsr": "^1.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/ui": "^4.1.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vite": "^8.0.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.1"
},
"dependencies": {
"@sourceregistry/node-jwt": "^1.5.4"
},
"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-webauthn(release): 🚀 ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
]
}
}