-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "moos-api",
"version": "0.7.3",
"description": "Moos API type definitions",
"repository": {
"type": "git",
"url": "git+/~https://github.com/wolkeneis/moos-api.git"
},
"author": "Frooastside",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "/~https://github.com/wolkeneis/moos-api/issues"
},
"homepage": "/~https://github.com/wolkeneis/moos-api#readme",
"types": "types/index.ts",
"scripts": {
"openapi": "openapi-typescript \"reference/**/*.yaml\" --additional-properties --export-type --output .",
"lint": "eslint --ext ts .",
"lint:fix": "yarn lint --fix",
"pretty": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"openapi-typescript": "^6.2.8",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.yaml": [
"prettier --write",
"openapi-typescript \"reference/**/*.yaml\" --export-type --output ."
],
"*.{js,ts}": "eslint --ext ts --cache --fix",
"*.{js,ts,css,md,json}": "prettier --write"
}
}