@kiloscribe/inscription-sdk
Version:
SDK for inscribing files on Hedera
101 lines (100 loc) • 3.11 kB
JSON
{
"name": "@kiloscribe/inscription-sdk",
"version": "2.0.8",
"description": "SDK for inscribing files on Hedera",
"type": "module",
"files": [
"dist"
],
"main": "./dist/umd/inscription-sdk.umd.js",
"module": "./dist/es/inscription-sdk.es.js",
"types": "./dist/es/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.ts",
"default": "./dist/es/inscription-sdk.es.js"
},
"require": {
"types": "./dist/umd/index.d.ts",
"default": "./dist/umd/inscription-sdk.umd.js"
}
}
},
"scripts": {
"clean": "rimraf dist",
"build:es": "BUILD_FORMAT=es vite build",
"build:umd": "BUILD_FORMAT=umd vite build",
"build": "NODE_OPTIONS=--max-old-space-size=8192 npm run clean && npm run build:umd && npm run build:es",
"release": "npm publish --access public",
"preview": "vite preview",
"example:file": "tsx examples/inscribe-file.ts",
"example:url": "tsx examples/inscribe-url.ts",
"example:hashinal": "tsx examples/inscribe-hashinal.ts",
"example:auth": "tsx examples/server-auth.ts",
"example:wait": "tsx examples/wait-for-inscription.ts",
"example:holder": "tsx examples/get-holder-inscriptions.ts",
"demo:dev": "vite -c demo/vite.config.ts",
"demo:build": "vite build -c demo/vite.config.ts",
"demo:preview": "vite preview -c demo/vite.config.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"hedera",
"hashgraph",
"inscription",
"nft",
"blockchain",
"kiloscribe"
],
"author": "Kiloscribe",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kiloscribe/inscription-sdk.git"
},
"bugs": {
"url": "https://github.com/kiloscribe/inscription-sdk/issues"
},
"homepage": "https://github.com/kiloscribe/inscription-sdk#readme",
"dependencies": {
"@hashgraph/hedera-wallet-connect": "2.0.4-canary.3ca04e9.0",
"axios": "^1.11.0",
"date-fns": "^4.1.0",
"file-type": "^21.0.0",
"mime-types": "^3",
"socket.io-client": "^4.8.1"
},
"peerDependencies": {
"@hashgraph/sdk": "^2.77.0",
"@hashgraphonline/standards-sdk": "^0.1.143"
},
"resolutions": {
"@hashgraphonline/standards-sdk": "^0.1.143",
"@hashgraph/sdk": "^2.77.0"
},
"devDependencies": {
"@hashgraph/sdk": "^2.77.0",
"@hashgraphonline/standards-sdk": "^0.1.143",
"@types/jest": "^29.5.5",
"@types/mime-types": "^2.1.4",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"jszip": "^3.10.1",
"rimraf": "^6.0.0",
"terser": "^5.39.0",
"ts-jest": "^29.1.1",
"tsx": "^4.19.3",
"typescript": "~5.8.2",
"vite": "^6",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-string-replace": "^1.1.3"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912"
}