-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.95 KB
/
package.json
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
{
"name": "tyex",
"version": "0.0.0",
"description": "Type-safe Express.js routes with automatic OpenAPI documentation generation.",
"type": "module",
"author": "Carlos Santos <[email protected]>",
"license": "MIT",
"keywords": [
"express",
"typescript",
"validation",
"ajv",
"typebox",
"api",
"rest",
"types",
"schema",
"openapi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/casantosmu/tyex.git"
},
"bugs": {
"url": "https://github.com/casantosmu/tyex/issues"
},
"homepage": "https://github.com/casantosmu/tyex#readme",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"peerDependencies": {
"@sinclair/typebox": ">=0.32.0",
"ajv": ">=8.0.0",
"ajv-formats": ">=3.0.1",
"express": ">=4.0.0"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=\"src/**\"",
"build": "tsup && fix-tsup-cjs",
"lint": "prettier . --check && eslint .",
"typecheck": "tsc",
"prepublishOnly": "npm run test run && npm run lint && npm run typecheck && npm run build"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@eslint/js": "^9.18.0",
"@types/express": "^4.17.21",
"@types/node": "^20.17.14",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^3.0.3",
"@vitest/eslint-plugin": "^1.1.25",
"body-parser": "^1.20.3",
"eslint": "^9.18.0",
"fix-tsup-cjs": "^1.2.0",
"openapi3-ts": "^4.4.0",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.3"
}
}