-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.46 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
58
59
60
61
{
"author": "Demian Parkhomenko <[email protected]>",
"bugs": {
"url": "https://github.com/DemianParkhomenko/mono-openapi/issues"
},
"dependencies": {
"openapi-fetch": "^0.9.5"
},
"description": "Monobank client",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.10",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"files": [
"/lib",
"/generated",
"!/lib/Tests"
],
"keywords": [
"monobank",
"openapi",
"client",
"api",
"swagger",
"mono",
"bank",
"typesafe"
],
"license": "MIT",
"main": "lib/index.js",
"name": "mono-openapi",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/DemianParkhomenko/mono-openapi"
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\"",
"examples:acquiring": "npx tsx ./examples/acquiring.ts",
"examples:personal": "npx tsx ./examples/personal.ts",
"prepare": "husky install",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint src",
"lint:write": "eslint --fix src"
},
"type": "module",
"types": "lib/index.d.ts",
"version": "3.0.0",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}