-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.12 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.12 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
{
"name": "@o3co/auth.utils",
"description": "Shared utilities for auth.* services",
"version": "0.0.0",
"license": "Apache-2.0",
"engines": {
"node": ">=18.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/o3co/auth.utils.git"
},
"packageManager": "pnpm@10.29.3",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./express": {
"import": "./dist/express/index.mjs",
"types": "./dist/express/index.d.mts"
}
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"express": "^5.0.0",
"pino": "^10.0.0"
},
"peerDependenciesMeta": {
"pino": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/express": "^5.0.6",
"@types/node": "^25.1.0",
"express": "^5.2.1",
"pino": "^10.3.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}