-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"author": "Andrew Zolotukhin <andrew_zol@cleverbrush.com>",
"bugs": {
"url": "https://github.com/cleverbrush/framework/issues",
"email": "andrew_zol@cleverbrush.com"
},
"dependencies": {
"@cleverbrush/auth": "^4.3.2",
"@cleverbrush/di": "^4.3.2",
"@cleverbrush/schema": "^4.3.2",
"@fastify/busboy": "^3.2.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/busboy": "1.5.4",
"@types/ws": "^8.18.1"
},
"description": "Schema-first HTTP server framework — schema-driven controllers, DI, auto-validation, RFC 9457 errors",
"files": [
"dist"
],
"homepage": "https://docs.cleverbrush.com/server",
"keywords": [
"http",
"server",
"schema",
"dependency injection",
"validation",
"typescript",
"cleverbrush"
],
"license": "BSD 3-Clause",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./contract": {
"types": "./dist/contract.d.ts",
"import": "./dist/contract.js"
}
},
"sideEffects": false,
"name": "@cleverbrush/server",
"readme": "https://github.com/cleverbrush/framework/tree/master/libs/server#readme",
"repository": {
"type": "git",
"url": "github:cleverbrush/framework"
},
"scripts": {
"watch": "tsc --build tsconfig.build.json --watch",
"build": "tsup && rm -f tsconfig.build.tsbuildinfo && tsc --project tsconfig.build.json --emitDeclarationOnly",
"clean": "rm -rf dist tsconfig.build.tsbuildinfo"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "4.3.2"
}