-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "api-tools-ts",
"version": "2.0.1",
"description": "A modern, type-safe, light-weight library to help you create APIs quickly using Express.js, written in TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"build:lib": "npm run clean && npx tsup",
"build:docs": "npx typedoc src/index.ts",
"test": "echo \"Error: no test specified\" && exit 0",
"prepublishOnly": "npm run build:lib"
},
"keywords": [
"api",
"express",
"typescript",
"rest",
"server",
"framework",
"middleware"
],
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"author": "naseif",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/naseif/API-Tools-TS.git"
},
"bugs": {
"url": "https://github.com/naseif/API-Tools-TS/issues"
},
"homepage": "https://github.com/naseif/API-Tools-TS#readme",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsup": "^8.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0"
},
"engines": {
"node": ">=16.0.0"
}
}