-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.36 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.36 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
{
"name": "@koala-ts/framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./routing": "./dist/routing/index.js",
"./validator": "./dist/validator/index.js",
"./validator/constraints": "./dist/validator/constraints/index.js"
},
"typesVersions": {
"*": {
"routing": [
"dist/routing/index.d.ts"
],
"validator": [
"dist/validator/index.d.ts"
],
"validator/constraints": [
"dist/validator/constraints/index.d.ts"
]
}
},
"version": "2.4.4",
"description": "A NodeJS framework for lazy developers",
"keywords": [
"koala",
"framework",
"nodejs",
"typescript"
],
"homepage": "https://koala-ts.github.io/docs/",
"bugs": {
"url": "https://github.com/koala-ts/framework/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koala-ts/framework.git"
},
"files": [
"dist"
],
"author": {
"name": "Dhemy",
"email": "imdhemy@gmail.com",
"url": "https://imdhemy.com"
},
"license": "MIT",
"engines": {
"node": ">=24",
"npm": ">=11"
},
"scripts": {
"test": "vitest run --coverage",
"build": "tsc && tsc-alias",
"start": "tsx watch playground/main.ts",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@koa/router": "^15.1.1",
"@koa/send": "^6.0.0",
"@types/koa": "^3.0.0",
"@types/supertest": "^7.2.0",
"argon2": "^0.44.0",
"dotenv": "^17.2.3",
"dotenv-expand": "^12.0.3",
"koa": "^3.0.3",
"koa-body": "^7.0.0",
"reflect-metadata": "^0.2.2",
"supertest": "^7.1.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.12",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.7.4",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}