-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "qapi",
"description": "Generate API from Swagger OpenAPI specs",
"private": true,
"engines": {
"node": ">= 14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guocaoyi/qapi.git"
},
"keywords": [
"swagger",
"open-api",
"qapi"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .js,.ts src"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"jest": "^27.5.1",
"eslint-define-config": "^1.2.5",
"eslint-plugin-node": "^11.1.0",
"@jest/types": "^27.5.1",
"@types/debug": "^4.1.7",
"@types/prettier": "^2.4.4",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"tslib": "^2.3.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --ext .ts"
],
"packages/**/*.d.ts": [
"eslint --ext .ts"
]
},
"packageManager": "pnpm@6.23.0",
"pnpm": {
"overrides": {
"qapi": "workspace:*"
}
}
}