-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"name": "axiosflow-api",
"version": "1.0.2",
"description": "axiosflow-api is a server-side library that makes building TypeScript APIs significantly easier and more efficient. It provides a structured way to define routes, integrate middleware, and dynamically generate API schemas. This cohesive approach works seamlessly with the axiosflow CLI library on the frontend, allowing you to quickly generate type-safe API function calls, leading to improved code consistency and faster development cycles.",
"keywords": [
"typescript",
"api",
"backend",
"server",
"route",
"routing",
"middleware",
"schema",
"metadata",
"reflect-metadata",
"axios",
"client",
"cli",
"generator",
"type-safe",
"type-inference",
"node",
"express",
"javascript",
"web",
"restful",
"microservices",
"rapid-development",
"code-generation",
"api-development",
"api-client"
],
"homepage": "https://github.com/Noble-TS/axiosflow-api#readme",
"bugs": {
"url": "https://github.com/Noble-TS/axiosflow-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Noble-TS/axiosflow-api.git"
},
"license": "MIT",
"author": "Noble-Ts",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/express": "^4.17.21",
"express": "^4.21.2",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/reflect-metadata": "^0.0.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@types/express": "^4.17.21",
"express": "^4.18.2"
},
"peerDependencyRules": {
"ignoreMissing": [
"@types/express"
]
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index .d.ts"
}
}
}