UNPKG

@stratosphere-network/token

Version:

Token module for StratoSphere SDK - ERC20 token minting and factory functionality

48 lines (47 loc) 1.11 kB
{ "name": "@stratosphere-network/token", "version": "6.0.0", "description": "Token module for StratoSphere SDK - ERC20 token minting and factory functionality", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "echo 'skip clean'", "prepublishOnly": "npm run clean && npm run build", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage" }, "keywords": [ "stratosphere", "token", "erc20", "minting", "factory", "blockchain", "defi" ], "author": "StratoSphere team", "license": "MIT", "files": [ "dist/**/*", "README.md" ], "dependencies": { "@openzeppelin/contracts": "^5.3.0", "@openzeppelin/contracts-upgradeable": "^5.3.0", "@stratosphere-network/shared": "^1.1.0", "ethers": "^6.0.0" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.0.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.0.0" }, "publishConfig": { "access": "public" } }