@mysten/suins
Version:
63 lines • 1.56 kB
JSON
{
"name": "@mysten/suins",
"author": "Mysten Labs <build@mystenlabs.com>",
"description": "SuiNS SDK",
"version": "0.7.21",
"license": "Apache-2.0",
"private": false,
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"keywords": [
"Sui",
"suins",
"mysten"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": false,
"files": [
"CHANGELOG.md",
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"axios": "^1.9.0",
"axios-retry": "^4.5.0",
"@mysten/sui": "1.30.5"
},
"devDependencies": {
"@types/tmp": "^0.2.6",
"ts-retry-promise": "^0.8.1",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.1",
"@mysten/build-scripts": "0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mystenlabs/suins-contracts.git"
},
"bugs": {
"url": "https://github.com/mystenlabs/suins-contracts/issues"
},
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "build-package",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"test:e2e": "vitest run"
}
}