-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 3.04 KB
/
package.json
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
{
"name": "@passageidentity/passage-node",
"version": "2.11.2",
"author": "Passage by 1Password",
"license": "MIT",
"description": "Passkey Complete for Node.js - Integrate into your Node.js API or service to enable a completely passwordless standalone auth solution with Passage by 1Password",
"homepage": "https://docs.passage.id/complete",
"bugs": {
"url": "https://github.com/passageidentity/.github/blob/main/SUPPORT.md",
"email": "[email protected]"
},
"keywords": [
"nodejs",
"javascript",
"typescript",
"authentication",
"passkeys",
"passwordless",
"webauthn",
"passkey-complete",
"biometrics",
"ciam",
"identity",
"magic-links",
"oauth2",
"oidc",
"otp",
"1password",
"passage",
"passage-sdk"
],
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/",
"CHANGELOG.md"
],
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^16 || ^18 || ^20 || ^22"
},
"scripts": {
"lint": "eslint '{src,tests}/**/*.ts' --fix",
"lint:ci": "eslint '{src,tests}/**/*.ts'",
"format": "prettier --write '{src,tests}/**/*.ts'",
"format:ci": "prettier --check '{src,tests}/**/*.ts'",
"dev": "ts-node-dev --respawn testServer.ts",
"test": "jest",
"test:watch": "jest --watch",
"change": "beachball change",
"publish": "beachball publish -y",
"set-version": "echo '{\"version\":\"'$npm_package_name' '$npm_package_version'\"}' > ./src/utils/config.json",
"beachball-bump": "beachball bump",
"beachball-check": "beachball check",
"build": "tsc --noEmit & tsup ./src/index.ts --no-config --format esm,cjs --dts-resolve --minify"
},
"dependencies": {
"jose": "^5.9.6",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.11",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-jest": "^29.7.0",
"beachball": "^2.37.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.21.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsup": "^8.2.4",
"typescript": "^5.6.3"
}
}