UNPKG

aleph-indexer-sdk

Version:

TypeScript SDK for Aleph Indexer GraphQL API

59 lines 1.42 kB
{ "name": "aleph-indexer-sdk", "version": "0.1.25.dev.2", "type": "module", "description": "TypeScript SDK for Aleph Indexer GraphQL API", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "keywords": [ "graphql", "aleph", "indexer", "sdk", "typescript" ], "license": "MIT", "files": [ "dist/", "README.md" ], "peerDependencies": { "graphql": "^16.0.0" }, "dependencies": { "graphql-request": "^6.1.0", "graphql-tag": "^2.12.6" }, "devDependencies": { "@graphql-codegen/cli": "^5.0.7", "@graphql-codegen/typescript": "^4.1.6", "@graphql-codegen/typescript-document-nodes": "^4.0.16", "@graphql-codegen/typescript-graphql-request": "^6.3.0", "@graphql-codegen/typescript-operations": "^4.6.1", "@graphql-typed-document-node/core": "^3.2.0", "graphql": "^16.11.0", "graphql-tag": "^2.12.6", "ts-node": "^10.9.2", "tsup": "^8.5.0", "tsx": "^4.20.3", "typescript": "^5.8.3" }, "scripts": { "generate": "graphql-codegen --config codegen.ts", "build": "rm -rf dist && tsup", "test": "tsx example.ts" } }