-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.29 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": "@relive/graphhopper-api-client",
"version": "0.0.8",
"description": "Open source Javascript / Typescript client to the Graphhopper API, generated with OpenAPI",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"generate": "rm -rf src/generated && export OPENAPI_GENERATOR_VERSION=5.4.0 && ./generate-client.sh generate -i https://docs.graphhopper.com/openapi.json -g typescript-axios -o src/generated/graphhopper-api --additional-properties=withSeparateModelsAndApi=true,modelPackage=model,apiPackage=api,useSingleRequestParameter=true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relivecc/graphhopper-api-client.git"
},
"keywords": [
"graphhopper",
"routing",
"osm",
"openstreetmap",
"routes"
],
"author": "Relive",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/relivecc/graphhopper-api-client/issues"
},
"homepage": "https://github.com/relivecc/graphhopper-api-client#readme",
"dependencies": {
"axios": "^0.26.1"
},
"devDependencies": {
"@types/papaparse": "^5.3.2",
"typescript": "^4.6.3"
},
"peerDependencies": {
"papaparse": "^5.3.2"
},
"files": [
"build/**/*"
]
}