-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.8 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.8 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
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@expresso/router",
"version": "7.0.1",
"main": "dist/index.js",
"description": "@expresso framework library",
"engines": {
"node": ">=18"
},
"keywords": [
"swagger",
"zod",
"typescript",
"openapi",
"express",
"expresso"
],
"scripts": {
"test": "node --import tsx --test test/*",
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build:clean": "npm run build && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"dev": "tsx usage",
"prepack": "npm run build:clean",
"push": "git push && sleep 2 && gh api repos/\\{owner\\}/\\{repo\\}/actions/runs?per_page=1 | jq '.workflow_runs[0].id' | xargs gh run watch",
"prepare": "husky"
},
"repository": "github:expresso/router",
"author": "Roz <roz@rjmunhoz.me>",
"contributors": [
"Lucas Santos <hello@lsantos.dev>"
],
"license": "GPL-3.0",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/sinon": "^17.0.3",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"axiosist": "^1.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"semantic-release": "^23.0.6",
"sinon": "^17.0.1",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@anatine/zod-openapi": "^2.2.5",
"@expresso/app": "^1.2.4",
"@expresso/server": "^1.1.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"openapi3-ts": "^4.2.2",
"swagger-ui-express": "^5.0.0",
"yaml": "^2.4.1",
"zod": "^3.22.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}