-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '1c2225c6d001e78dffddd03093bd83d760773385' into main
- Loading branch information
Showing
8 changed files
with
578 additions
and
604 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,62 @@ | ||
{ | ||
"name": "erc20-token-api", | ||
"description": "Get informations about ERC20 tokens", | ||
"version": "0.0.1", | ||
"homepage": "https://github.com/pinax-network/erc20-token-api", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Etienne Donneger", | ||
"email": "[email protected]", | ||
"url": "https://github.com/0237h" | ||
"name": "erc20-token-api", | ||
"description": "Get informations about ERC20 tokens", | ||
"version": "0.0.1", | ||
"homepage": "https://github.com/pinax-network/erc20-token-api", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Etienne Donneger", | ||
"email": "[email protected]", | ||
"url": "https://github.com/0237h" | ||
}, | ||
{ | ||
"name": "Denis Carriere", | ||
"email": "[email protected]", | ||
"url": "https://github.com/DenisCarriere/" | ||
}, | ||
{ | ||
"name": "Mathieu Lefebvre", | ||
"email": "[email protected]", | ||
"url": "https://github.com/Matlefebvre1234/" | ||
} | ||
], | ||
"dependencies": { | ||
"@clickhouse/client-web": "latest", | ||
"@kubb/cli": "^2.23.2", | ||
"@kubb/core": "^2.23.2", | ||
"commander": "latest", | ||
"dotenv": "latest", | ||
"ethers": "^6.12.1", | ||
"hono": "latest", | ||
"prom-client": "latest", | ||
"tslog": "latest", | ||
"typed-openapi": "latest", | ||
"zod": "latest" | ||
}, | ||
{ | ||
"name": "Denis Carriere", | ||
"email": "[email protected]", | ||
"url": "https://github.com/DenisCarriere/" | ||
"private": true, | ||
"scripts": { | ||
"build": "export APP_VERSION=$(git rev-parse --short HEAD) && bun build --compile index.ts --outfile erc20-token-api", | ||
"clean": "bun i --force", | ||
"dev": "export APP_VERSION=$(git rev-parse --short HEAD) && bun --watch index.ts", | ||
"lint": "export APP_VERSION=$(git rev-parse --short HEAD) && bun run tsc --noEmit --skipLibCheck --pretty", | ||
"start": "export APP_VERSION=$(git rev-parse --short HEAD) && bun index.ts", | ||
"test": "bun test --coverage", | ||
"types": "bun run tsp compile ./src/typespec && bun run typed-openapi ./tsp-output/@typespec/openapi3/openapi.json -o ./src/types/zod.gen.ts -r zod", | ||
"types:check": "bun run tsp compile ./src/typespec --no-emit --pretty --warn-as-error", | ||
"types:format": "bun run tsp format src/typespec/**/*.tsp", | ||
"types:watch": "bun run tsp compile ./src/typespec --watch --pretty --warn-as-error", | ||
"generate:": "bun run kubb --config ./kubb.config.ts" | ||
}, | ||
{ | ||
"name": "Mathieu Lefebvre", | ||
"email": "[email protected]", | ||
"url": "https://github.com/Matlefebvre1234/" | ||
"type": "module", | ||
"devDependencies": { | ||
"@typespec/compiler": "latest", | ||
"@typespec/openapi3": "latest", | ||
"@typespec/protobuf": "latest", | ||
"bun-types": "latest", | ||
"typescript": "latest" | ||
}, | ||
"prettier": { | ||
"tabWidth": 4 | ||
} | ||
], | ||
"dependencies": { | ||
"@clickhouse/client-web": "latest", | ||
"@kubb/cli": "^2.23.2", | ||
"@kubb/core": "^2.23.2", | ||
"commander": "latest", | ||
"dotenv": "latest", | ||
"ethers": "^6.12.1", | ||
"hono": "latest", | ||
"prom-client": "latest", | ||
"tslog": "latest", | ||
"typed-openapi": "latest", | ||
"zod": "latest" | ||
}, | ||
"private": true, | ||
"scripts": { | ||
"build": "export APP_VERSION=$(git rev-parse --short HEAD) && bun build --compile index.ts --outfile erc20-token-api", | ||
"clean": "bun i --force", | ||
"dev": "export APP_VERSION=$(git rev-parse --short HEAD) && bun --watch index.ts", | ||
"lint": "export APP_VERSION=$(git rev-parse --short HEAD) && bun run tsc --noEmit --skipLibCheck --pretty", | ||
"start": "export APP_VERSION=$(git rev-parse --short HEAD) && bun index.ts", | ||
"test": "bun test --coverage", | ||
"types": "bun run tsp compile ./src/typespec && bun run typed-openapi ./tsp-output/@typespec/openapi3/openapi.json -o ./src/types/zod.gen.ts -r zod", | ||
"types:check": "bun run tsp compile ./src/typespec --no-emit --pretty --warn-as-error", | ||
"types:format": "bun run tsp format src/typespec/**/*.tsp", | ||
"types:watch": "bun run tsp compile ./src/typespec --watch --pretty --warn-as-error" | ||
}, | ||
"type": "module", | ||
"devDependencies": { | ||
"@typespec/compiler": "latest", | ||
"@typespec/openapi3": "latest", | ||
"@typespec/protobuf": "latest", | ||
"bun-types": "latest", | ||
"typescript": "latest" | ||
}, | ||
"prettier": { | ||
"tabWidth": 4 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.