-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.26 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
{
"author": "Dexter Edwards <[email protected]>",
"name": "@vegaprotocol/rest-clients",
"version": "0.77.1",
"description": "Clients for interacting with VegaProtocol REST APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/vegaprotocol/rest-clients/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vegaprotocol/rest-clients.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"generate": "openapi --client fetch",
"generate:trading-data": "yarn generate --input ./openapi/trading_data_v2.openapi.json --output ./src/trading-data",
"generate:core-state": "yarn generate --input ./openapi/corestate.openapi.json --output ./src/core-state",
"generate:transaction": "yarn generate --input ./openapi/transaction.openapi.json --output ./src/transaction",
"generate:block-explorer": "yarn generate --input ./openapi/blockexplorer.openapi.json --output ./src/block-explorer",
"generate:all": "yarn generate:trading-data && yarn generate:core-state && yarn generate:transaction && yarn generate:block-explorer"
},
"license": "MIT",
"devDependencies": {
"lodash": "^4.17.21",
"openapi-typescript-codegen": "^0.25.0",
"typescript": "^5.2.2"
}
}