-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.3 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@developerehsan/nextjs-logger",
"version": "1.0.1",
"description": "A secure, terminal-only logging library for Next.js 16 with TanStack Pacer-backed client queueing. console.log DX, server-only output.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/developerEhsan/nextjs-logger.git"
},
"homepage": "https://github.com/developerEhsan/nextjs-logger#readme",
"bugs": {
"url": "https://github.com/developerEhsan/nextjs-logger/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./provider": {
"types": "./dist/provider/index.d.ts",
"import": "./dist/provider/index.js"
},
"./transports": {
"types": "./dist/transports/index.d.ts",
"import": "./dist/transports/index.js"
},
"./security/rate-limit-redis": {
"types": "./dist/security/rate-limit-redis.d.ts",
"import": "./dist/security/rate-limit-redis.js"
},
"./instrumentation": {
"types": "./dist/instrumentation/index.d.ts",
"import": "./dist/instrumentation/index.js"
},
"./relay/route-handler": {
"types": "./dist/relay/route-handler.d.ts",
"import": "./dist/relay/route-handler.js"
},
"./relay/server-action": {
"types": "./dist/relay/server-action.d.ts",
"import": "./dist/relay/server-action.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsup",
"postbuild": "node scripts/check-edge-safety.mjs && node scripts/check-build-contract.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"changeset": "changeset"
},
"peerDependencies": {
"next": ">=16.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"dependencies": {
"@tanstack/pacer": "^0.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}