-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "firefly-api",
"version": "2.0.1",
"description": "OpenAPI Autogenerated firefly-iii TypeScript API",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"generate": "openapi-generator-cli generate -i firefly-iii-spec.yaml -g typescript-axios -o . -c ./openapi-generator.json",
"fetch": "curl -o firefly-iii-spec.yaml https://raw.githubusercontent.com/firefly-iii/api-docs/main/firefly-iii-2.0.0-v1.yaml && npm run replace",
"replace": "replace-in-file --configFile=replace.js",
"ci": "npm run generate && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/6ixfalls/firefly-api.git"
},
"keywords": [
"OpenAPI",
"OpenAPI-Generator",
"firefly-iii",
"typescript",
"axios"
],
"bugs": {
"url": "https://github.com/6ixfalls/firefly-api/issues"
},
"homepage": "https://github.com/6ixfalls/firefly-api#readme",
"author": "6ixfalls",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.6.0",
"@types/node": "^18.16.2",
"replace-in-file": "^6.3.5",
"typescript": "^5.0.4"
}
}