-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.53 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.53 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
{
"name": "swagger-fix",
"version": "1.0.5",
"description": "Fix invalid content in swagger file",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/keq-request/swagger-fix.git"
},
"scripts": {
"test": "jest",
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"prepare": "is-ci || husky"
},
"keywords": [
"swagger",
"openapi",
"fix",
"valid",
"chinese",
"convert",
"pinyin"
],
"author": "zbqsfs",
"license": "MIT",
"packageManager": "pnpm@9.11.0",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@eslint/js": "^9.3.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/ramda": "^0.30.0",
"commitizen": "^4.3.0",
"eslint": "^9.3.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "3.2.5",
"semantic-release": "^23.1.1",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
},
"dependencies": {
"openapi-types": "^12.1.3",
"pinyin-pro": "^3.21.0",
"ramda": "^0.30.0"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}