-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 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
{
"name": "@vaultys/webauthn-node",
"version": "0.1.1",
"description": "",
"main": "index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build || node install.js",
"prebuild": "node-pre-gyp clean",
"test": "jest",
"build": "node-pre-gyp rebuild && tsc",
"build:ts": "tsc",
"clean": "rimraf dist binding",
"package": "node-pre-gyp package",
"test:native": "tsx src/test.ts"
},
"keywords": [
"webauthn",
"fido2",
"security",
"authentication",
"libfido2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vaultys/webauthn-node.git"
},
"bugs": {
"url": "https://github.com/vaultys/webauthn-node/issues"
},
"homepage": "https://github.com/vaultys/webauthn-node#readme",
"author": "FX Thoorens - Vaultys",
"license": "MIT",
"dependencies": {
"@mapbox/node-pre-gyp": "^2.0.0",
"base64url": "^3.0.1",
"bindings": "^1.5.0",
"node-addon-api": "^8.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"gypfile": true,
"binary": {
"module_name": "fido2",
"module_path": "./binding/{platform}-{arch}/",
"host": "https://github.com/vaultys/webauthn-node/releases/download/",
"remote_path": "v{version}",
"package_name": "{module_name}-v{version}-{platform}-{arch}.tar.gz"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}