-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "@xchainjs/xchain-mayanode",
"version": "0.1.3",
"license": "MIT",
"description": "Mayanode module that exposes all mayanode functions using openapi-generator-cli",
"keywords": [
"XChain",
"Mayanode"
],
"author": "MAYAChain",
"homepage": "https://github.com/xchainjs/xchainjs-lib",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:xchainjs/xchainjs-lib.git"
},
"scripts": {
"clean": "rm -rf .turbo && rm -rf lib",
"build": "yarn clean && rollup -c",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0",
"test": "jest --passWithNoTests",
"generate:types": "yarn clean:types:mayanode && yarn generate:types:mayanode",
"generate:types:mayanode": "TS_POST_PROCESS_FILE=./node_modules/.bin/prettier openapi-generator-cli generate -i https://mayanode.mayachain.info/mayachain/doc//openapi.yaml -g typescript-axios -o ./src/generated/mayanodeApi --skip-validate-spec --generate-alias-as-model",
"clean:types:mayanode": "rimraf ./src/generated/mayanodeApi"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.6.0",
"rimraf": "^5.0.0"
},
"peerDependencies": {
"axios": "^1.3.6"
},
"publishConfig": {
"access": "public"
}
}