@stoar/sdk
Version:
JavaScript/TypeScript SDK for STOAR - Decentralized file storage on Arweave
71 lines • 1.77 kB
JSON
{
"name": "@stoar/sdk",
"version": "0.1.2",
"description": "JavaScript/TypeScript SDK for STOAR - Decentralized file storage on Arweave",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"arweave",
"storage",
"decentralized",
"nft",
"blockchain",
"permanent",
"stoar"
],
"author": "STOAR Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/micovi/stoar"
},
"bugs": {
"url": "https://github.com/micovi/stoar/issues"
},
"homepage": "https://stoar.io/sdk",
"dependencies": {
"@dha-team/arbundles": "^1.0.3",
"@metaplex/arweave-cost": "^2.0.0",
"@types/mime-types": "^3.0.1",
"arweave": "^1.15.1",
"mime-types": "^3.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/ui": "^3.2.4",
"eslint": "^8.56.0",
"jsdom": "^26.1.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"arweave": ">=1.15.0"
},
"engines": {
"node": ">=16.0.0"
}
}