-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.69 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@toolcase/node",
"version": "5.0.0",
"description": "Node.js helpers for backend services — Fastify endpoints, raw-SQL repositories, Redis KV service, and isomorphic sanitize/pagination/where helpers.",
"source": "src/main.ts",
"main": "lib/main.main.js",
"module": "lib/main.module.js",
"types": "lib/main.d.ts",
"exports": {
".": {
"types": "./lib/main.d.ts",
"import": "./lib/main.module.js",
"require": "./lib/main.main.js"
},
"./env": {
"types": "./lib/env.d.ts",
"import": "./lib/env.module.js",
"require": "./lib/env.main.js"
}
},
"sideEffects": false,
"scripts": {
"dev": "tsup --watch",
"build": "tsup && tsc -p tsconfig.build.json || true"
},
"peerDependencies": {
"@fastify/cors": "^11.0.0",
"@toolcase/base": "^5.0.0",
"@toolcase/serializer": "^5.0.0",
"fastify": "^5.0.0",
"jose": "^5.10.0",
"redis": "^5.0.0",
"sharp": "^0.33.0"
},
"peerDependenciesMeta": {
"@fastify/cors": {
"optional": true
},
"@toolcase/serializer": {
"optional": true
},
"fastify": {
"optional": true
},
"jose": {
"optional": true
},
"redis": {
"optional": true
},
"sharp": {
"optional": true
}
},
"devDependencies": {
"@fastify/cors": "^11.2.0",
"@toolcase/base": "*",
"@toolcase/serializer": "*",
"@types/node": "^20.0.0",
"fastify": "^5.8.5",
"jose": "^5.10.0",
"redis": "^5.12.1",
"sharp": "^0.33.5"
},
"author": {
"name": "Daniel Kalevski",
"url": "https://kalevski.dev"
},
"homepage": "https://toolcase.kalevski.dev",
"keywords": [
"toolcase",
"node",
"nodejs",
"fastify",
"redis",
"sharp",
"image-processing",
"atlas",
"sprite-packing",
"repository",
"crud",
"endpoint",
"sanitize",
"pagination",
"typescript",
"esm"
],
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalevski/toolcase.git",
"directory": "node"
},
"bugs": {
"url": "https://github.com/kalevski/toolcase/issues"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}