@fotonjs/api
Version:
Foton API: comfortable public APIs to connect to the TON blockchain
48 lines • 1.21 kB
JSON
{
"name": "@fotonjs/api",
"version": "0.0.5",
"description": "Foton API: comfortable public APIs to connect to the TON blockchain",
"keywords": [
"TON",
"The Open Network",
"Blockchain",
"API",
"RPC"
],
"license": "ISC",
"author": "vanishmax",
"repository": {
"type": "git",
"url": "https://github.com/vanishmax/foton.git"
},
"homepage": "https://github.com/vanishmax/foton/tree/main/packages/api",
"bugs": "https://github.com/vanishmax/foton/issues",
"type": "module",
"files": [
"dist",
"readme.md"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {
"openapi-fetch": "^0.10.2",
"openapi-typescript": "^7.0.4",
"typescript": "^5.5.3"
},
"devDependencies": {
"@types/node": "^20.14.11",
"tsup": "^8.1.2"
},
"scripts": {
"generate": "openapi-typescript https://toncenter.com/api/v3/openapi.json -o src/schemas/toncenter-v3.ts",
"build": "tsup src/index.ts --dts --minify --format cjs,esm --out-dir ./dist"
}
}