@57block/stellar-resource-usage
Version:
A library that provides convenient ways to monitor and analyze the resources consumed by smart contracts during execution
97 lines • 2.48 kB
JSON
{
"name": "@57block/stellar-resource-usage",
"version": "0.0.4-rc.1",
"description": "A library that provides convenient ways to monitor and analyze the resources consumed by smart contracts during execution",
"license": "MIT",
"author": "57blocks <https://github.com/57blocks>",
"repository": {
"type": "git",
"url": "git+https://github.com/57blocks/stellar-resource-usage-report.git"
},
"sideEffects": false,
"main": "dist/main.js",
"private": false,
"type": "module",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && bun ./bun.build.js",
"start": "bun --watch test ./src/main.ts",
"lint": "eslint . --fix",
"test": "vitest -c ./vitest.config.ts --run",
"coverage": "vitest run --coverage",
"prepare": "husky",
"changelog": "changeset",
"version": "changeset version --tag",
"release": "changeset publish",
"prepublishOnly": "bun run build"
},
"bin": {
"dockerDev": "./command.cjs"
},
"dependencies": {
"@colors/colors": "1.6.0",
"cli-table3": "0.6.5",
"globals": "15.14.0",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@types/bun": "1.1.14",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@vitest/coverage-v8": "2.1.8",
"bun": "1.1.38",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"keywords": [
"stellar",
"resource-usage",
"monitoring",
"cli",
"nodejs",
"typescript"
],
"files": [
"dist",
"docs",
"index.d.ts",
"command.cjs",
"LICENSE",
"README.md",
"package.json",
"deploy.example.ts",
"docker-unlimited.sh"
],
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"**/*.{js,ts,tsx}": [
"eslint --fix"
]
},
"peerDependencies": {
"@stellar/stellar-sdk": "13.1.0"
},
"bundledDependencies": [
"@colors/colors",
"cli-table3",
"globals",
"lodash-es"
]
}