-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "@tmpim/tmpauth-client-js",
"version": "0.3.0",
"author": "tmpim",
"description": "tmpauth client for javascript",
"license": "MIT",
"repository": "https://github.com/tmpim/tmpauth-client-js",
"homepage": "https://github.com/tmpim/tmpauth-client-js",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./handler/*": "./dist/handler/*.js",
"./jwt/*": "./dist/jwt/*.js",
"./metadata/*": "./dist/metadata/*.js"
},
"typesVersions": {
"*": {
"handler/*": [
"./dist/handler/*"
],
"jwt/*": [
"./dist/jwt/*"
],
"metadata/*": [
"./dist/metadata/*"
]
}
},
"scripts": {
"build": "tsc",
"test": "jest --silent",
"test:loud": "jest"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230404.0",
"@types/aws-lambda": "^8.10.114",
"@types/cookie": "^0.5.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"undici": "^5.21.2"
},
"optionalDependencies": {
"@aws-sdk/client-dynamodb": "^3.315.0",
"@tsndr/cloudflare-worker-jwt": "^2.2.1",
"express": "^4.18.2",
"hono": "^2.7.8",
"jsonwebtoken": "^8.5.1"
},
"dependencies": {
"cookie": "^0.5.0"
},
"files": [
"dist"
]
}