@maestro-org/typescript-sdk
Advanced tools
Comparing version 1.5.4 to 1.5.5
103
package.json
{ | ||
"name": "@maestro-org/typescript-sdk", | ||
"version": "1.5.4", | ||
"description": "TypeScript SDK for the Maestro Dapp Platform", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup src/index.ts --format cjs,esm --dts", | ||
"release": "pnpm run build && changeset publish", | ||
"lint": "yarn prettier 'src/**/*.ts' --write && yarn eslint 'src/**/*.ts' --fix", | ||
"test": "pnpm test", | ||
"clean": "rm -rf dist && rm -rf node_modules && rm -f package-lock.json", | ||
"prepare": "husky install" | ||
}, | ||
"keywords": [ | ||
"typescript", | ||
"blockchain", | ||
"cryptocurrency", | ||
"maestro", | ||
"cardano" | ||
], | ||
"author": "gomaestro.org", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.2", | ||
"@commitlint/cli": "^17.4.3", | ||
"@commitlint/config-conventional": "^17.4.3", | ||
"@typescript-eslint/eslint-plugin": "^5.59.1", | ||
"@typescript-eslint/parser": "^5.59.1", | ||
"commitlint": "^17.4.3", | ||
"eslint": "^8.39.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-import-resolver-typescript": "^3.6.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^8.0.3", | ||
"prettier": "^2.8.8", | ||
"tsup": "^7.2.0", | ||
"typescript": "^5.2.2" | ||
}, | ||
"dependencies": { | ||
"axios": "^1.6.1" | ||
}, | ||
"lint-staged": { | ||
"src/**/*.{js,ts,},": [ | ||
"yarn prettier --write", | ||
"yarn eslint --fix" | ||
] | ||
} | ||
} | ||
"name": "@maestro-org/typescript-sdk", | ||
"version": "1.5.5", | ||
"description": "TypeScript SDK for the Maestro Dapp Platform", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup src/index.ts --format cjs,esm --dts", | ||
"release": "pnpm run build && changeset publish", | ||
"lint": "yarn prettier 'src/**/*.ts' --write && yarn eslint 'src/**/*.ts' --fix", | ||
"test": "pnpm test", | ||
"clean": "rm -rf dist && rm -rf node_modules && rm -f package-lock.json", | ||
"prepare": "husky install" | ||
}, | ||
"keywords": [ | ||
"typescript", | ||
"blockchain", | ||
"cryptocurrency", | ||
"maestro", | ||
"cardano" | ||
], | ||
"author": "gomaestro.org", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.2", | ||
"@commitlint/cli": "^17.4.3", | ||
"@commitlint/config-conventional": "^17.4.3", | ||
"@typescript-eslint/eslint-plugin": "^5.59.1", | ||
"@typescript-eslint/parser": "^5.59.1", | ||
"commitlint": "^17.4.3", | ||
"eslint": "^8.39.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-import-resolver-typescript": "^3.6.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^8.0.3", | ||
"prettier": "^2.8.8", | ||
"tsup": "^7.2.0", | ||
"typescript": "^5.2.2" | ||
}, | ||
"dependencies": { | ||
"axios": "^1.6.1" | ||
}, | ||
"lint-staged": { | ||
"src/**/*.{js,ts,},": [ | ||
"yarn prettier --write", | ||
"yarn eslint --fix" | ||
] | ||
} | ||
} | ||
@@ -178,3 +178,3 @@ /** | ||
*/ | ||
resolveDatums?: boolean | null; | ||
resolve_datums?: boolean | null; | ||
/** | ||
@@ -185,3 +185,3 @@ * Include the CBOR encodings of the transaction outputs in the response | ||
*/ | ||
withCbor?: boolean | null; | ||
with_cbor?: boolean | null; | ||
/** | ||
@@ -231,3 +231,3 @@ * The max number of results per page. | ||
*/ | ||
resolveDatums?: boolean | null; | ||
resolve_datums?: boolean | null; | ||
/** | ||
@@ -238,3 +238,3 @@ * Include the CBOR encodings of the transaction outputs in the response | ||
*/ | ||
withCbor?: boolean | null; | ||
with_cbor?: boolean | null; | ||
/** | ||
@@ -272,3 +272,3 @@ * The max number of results per page. | ||
*/ | ||
resolveDatums?: boolean | null; | ||
resolve_datums?: boolean | null; | ||
/** | ||
@@ -279,3 +279,3 @@ * Include the CBOR encodings of the transaction outputs in the response | ||
*/ | ||
withCbor?: boolean | null; | ||
with_cbor?: boolean | null; | ||
/** | ||
@@ -282,0 +282,0 @@ * The max number of results per page. |
@@ -13,3 +13,3 @@ /** | ||
*/ | ||
withCbor?: boolean | null; | ||
with_cbor?: boolean | null; | ||
} | ||
@@ -29,3 +29,3 @@ | ||
*/ | ||
resolveDatums?: boolean | null; | ||
resolve_datums?: boolean | null; | ||
/** | ||
@@ -36,3 +36,3 @@ * Include the CBOR encoding of the transaction output in the response | ||
*/ | ||
withCbor?: boolean | null; | ||
with_cbor?: boolean | null; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1001891