-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
185 lines (185 loc) · 6.18 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"$schema": "https://json.schemastore.org/package",
"name": "@andesite-lab/andesite-core",
"description": "Andesite - Core provides a set of tools to help you build a microservice",
"version": "1.43.0",
"type": "module",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.js"
},
"./error": {
"types": "./build/common/error/index.d.ts",
"import": "./build/common/error/index.js",
"require": "./build/common/error/index.js"
},
"./type": {
"types": "./build/common/type/data/index.d.ts",
"import": "./build/common/type/data/index.js",
"require": "./build/common/type/data/index.js"
},
"./ioredis": {
"types": "./build/common/lib/optional/ioredis/index.d.ts",
"import": "./build/common/lib/optional/ioredis/index.js",
"require": "./build/common/lib/optional/ioredis/index.js"
},
"./knex": {
"types": "./build/common/lib/optional/knex/index.d.ts",
"import": "./build/common/lib/optional/knex/index.js",
"require": "./build/common/lib/optional/knex/index.js"
},
"./vine": {
"types": "./build/common/lib/optional/vine/index.d.ts",
"import": "./build/common/lib/optional/vine/index.js",
"require": "./build/common/lib/optional/vine/index.js"
},
"./fastify": {
"types": "./build/common/lib/required/fastify/index.d.ts",
"import": "./build/common/lib/required/fastify/index.js",
"require": "./build/common/lib/required/fastify/index.js"
},
"./fluent": {
"types": "./build/common/lib/required/fluent-json-schema/index.d.ts",
"import": "./build/common/lib/required/fluent-json-schema/index.js",
"require": "./build/common/lib/required/fluent-json-schema/index.js"
},
"./i18n": {
"types": "./build/common/lib/required/i18n/index.d.ts",
"import": "./build/common/lib/required/i18n/index.js",
"require": "./build/common/lib/required/i18n/index.js"
},
"./util": {
"types": "./build/common/util/index.d.ts",
"import": "./build/common/util/index.js",
"require": "./build/common/util/index.js"
},
"./usecase": {
"types": "./build/domain/usecase/index.d.ts",
"import": "./build/domain/usecase/index.js",
"require": "./build/domain/usecase/index.js"
},
"./database": {
"types": "./build/infrastructure/database/index.d.ts",
"import": "./build/infrastructure/database/index.js",
"require": "./build/infrastructure/database/index.js"
},
"./database/creator": {
"types": "./build/infrastructure/database/creator/index.d.ts",
"import": "./build/infrastructure/database/creator/index.js",
"require": "./build/infrastructure/database/creator/index.js"
},
"./repository": {
"types": "./build/infrastructure/repository/index.d.ts",
"import": "./build/infrastructure/repository/index.js",
"require": "./build/infrastructure/repository/index.js"
},
"./storage": {
"types": "./build/infrastructure/storage/index.d.ts",
"import": "./build/infrastructure/storage/index.js",
"require": "./build/infrastructure/storage/index.js"
},
"./storage/creator": {
"types": "./build/infrastructure/storage/creator/index.d.ts",
"import": "./build/infrastructure/storage/creator/index.js",
"require": "./build/infrastructure/storage/creator/index.js"
},
"./store": {
"types": "./build/infrastructure/store/index.d.ts",
"import": "./build/infrastructure/store/index.js",
"require": "./build/infrastructure/store/index.js"
},
"./store/creator": {
"types": "./build/infrastructure/store/creator/index.d.ts",
"import": "./build/infrastructure/store/creator/index.js",
"require": "./build/infrastructure/store/creator/index.js"
},
"./http": {
"types": "./build/presentation/http/index.d.ts",
"import": "./build/presentation/http/index.js",
"require": "./build/presentation/http/index.js"
},
"./schema": {
"types": "./build/presentation/schema/index.d.ts",
"import": "./build/presentation/schema/index.js",
"require": "./build/presentation/schema/index.js"
}
},
"scripts": {
"dev": "bun --watch source/index.ts",
"build": "NODE_ENV=production bun bundler.config.ts && tsc && tsc-alias",
"start": "NODE_ENV=production bun build/index.js",
"test": "bun test",
"docs": "typedoc",
"fix-lint": "eslint --fix ./source",
"lint": "eslint ./source"
},
"author": "Ruby",
"license": "MIT",
"homepage": "https://github.com/Andesite-Lab/Core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Andesite-Lab/Core.git"
},
"bugs": {
"url": "https://github.com/Andesite-Lab/Core/issues"
},
"keywords": [
"andesite",
"andesite-lab",
"andesite-core",
"core"
],
"dependencies": {
"@basalt-lab/basalt-helper": "^1.9.0",
"@fastify/cors": "^10.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/swagger": "^9.3.0",
"@scalar/fastify-api-reference": "^1.25.68",
"@vinejs/vine": "^2.1.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"fast-querystring": "^1.1.2",
"fastify": "^5.1.0",
"fastify-print-routes": "^4.0.0",
"fluent-json-schema": "^5.0.0",
"i18next": "^23.16.6"
},
"devDependencies": {
"@azure/storage-blob": "^12.25.0",
"@basalt-lab/basalt-logger": "^1.10.0",
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/bun": "^1.1.13",
"@types/node": "^22.9.1",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.11",
"typescript-eslint": "^8.15.0"
},
"peerDependencies": {
"@azure/storage-blob": "^12.25.0",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"typescript": "^5.6.3"
},
"peerDependenciesMeta": {
"@azure/storage-blob": {
"optional": true
},
"knex": {
"optional": true
},
"ioredis": {
"optional": true
}
}
}