-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 843 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 843 Bytes
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
{
"name": "authing-node-sdk",
"version": "4.0.2",
"description": "Authing SDK for Node.js",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc"
},
"keywords": [],
"author": "Willin Wang <willin@willin.org> (https://willin.wang/)",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"base64url": "^3.0.1",
"buffer": "^6.0.3",
"crypto-js": "^4.1.1",
"jose": "4",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@types/ws": "^8.5.4",
"dotenv": "^16.0.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "4.5.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}