UNPKG

@apillon/sdk

Version:

▶◀ Apillon SDK for NodeJS ▶◀

93 lines (92 loc) 2.17 kB
{ "name": "@apillon/sdk", "description": "▶◀ Apillon SDK for NodeJS ▶◀", "version": "3.9.0", "author": "Apillon", "license": "MIT", "main": "./dist/index.js", "source": "./src/index.ts", "types": "./dist/index.d.ts", "bugs": { "url": "https://github.com/Apillon/sdk/issues" }, "repository": { "type": "git", "url": "https://github.com/Apillon/sdk" }, "homepage": "https://wiki.apillon.io/build/5-apillon-sdk.html", "declaration": true, "files": [ "dist/**" ], "scripts": { "prepublishOnly": "npm run build", "prebuild": "rimraf dist", "build": "tsc --declarationMap", "dev": "tsc --declarationMap --watch", "lint": "tsc --declarationMap && eslint \"{src,test}/**/*.ts\" --fix", "publish-package": "npm publish", "publish-beta": "npm publish --tag beta", "test": "npx jest", "generate-docs": "npx typedoc src/docs-index.ts --sort enum-value-ascending" }, "keywords": [ "SDK", "Apillon", "web3", "development", "blockchain", "ipfs", "polkadot", "moonbeam", "kilt", "phala", "decentralized" ], "dependencies": { "@polkadot/util-crypto": "^12.6.2", "axios": "^1.6.8", "ethereumjs-util": "^7.1.5", "ipfs-unixfs-importer": "7.0.1", "glob": "^11.0.0", "ignore": "^6.0.2", "targz": "^1.0.1" }, "devDependencies": { "@polkadot/keyring": "^12.6.2", "@types/jest": "^29.5.12", "dotenv": "^16.4.5", "eslint-config-common": "*", "ethers": "^6.12.0", "nodemon": "^3.1.0", "rimraf": "^5.0.5", "ts-node": "^10.9.2", "tsconfig": "*", "typedoc": "^0.25.13" }, "jest": { "testTimeout": 1800000, "moduleFileExtensions": [ "ts", "tsx", "js", "json" ], "rootDir": "src", "testPathIgnorePatterns": [ "dist/*" ], "testRegex": ".*\\.test\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverage": false, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "../coverage", "testEnvironment": "node", "preset": "ts-jest", "verbose": true } }