This repository was archived by the owner on Dec 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "wakanim-api",
"version": "0.1.1",
"description": "Moos API type definitions",
"repository": {
"type": "git",
"url": "git+https://github.com/Frooastside/wakanim-api.git"
},
"author": "Frooastside",
"license": "MIT",
"bugs": {
"url": "https://github.com/Frooastside/wakanim-api/issues"
},
"homepage": "https://github.com/Frooastside/wakanim-api#readme",
"types": "types/index.ts",
"files": [
"/reference",
"/types"
],
"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": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"openapi-typescript": "^6.3.4",
"prettier": "^3.0.0",
"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"
}
}