-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "@chubbyts/chubbyts-framework",
"type": "module",
"version": "3.1.3",
"description": "A minimal, highly performant middleware PSR-15 inspired function based micro framework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.",
"keywords": [
"chubbyts",
"micro framework",
"middleware",
"handler",
"psr-15"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/chubbyts-framework",
"scripts": {
"build": "rm -Rf dist && tsc",
"cs-fix": "prettier --write src tests",
"cs": "prettier --check src tests",
"infection": "stryker run",
"lint-fix": "eslint src tests eslint.config.js vitest.config.ts --fix",
"lint": "eslint src tests",
"prepare": "pnpm run build",
"test": "vitest",
"typedoc": "rm -Rf docs && typedoc"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"exports": {
"./*": {
"types": "./*.d.ts",
"import": "./*.js",
"default": "./*.js"
}
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@chubbyts/chubbyts-dic-types": "^2.2.0",
"@chubbyts/chubbyts-http-error": "^3.3.0",
"@chubbyts/chubbyts-log-types": "^3.2.0",
"@chubbyts/chubbyts-throwable-to-error": "^2.2.0",
"@chubbyts/chubbyts-undici-server": "^1.1.3"
},
"devDependencies": {
"@chubbyts/chubbyts-eslint": "^5.3.0",
"@chubbyts/chubbyts-function-mock": "^2.2.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^25.6.2",
"@vitest/coverage-v8": "^4.1.5",
"prettier": "^3.8.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38"
}