@synet/shell-exec
Version:
Safe shell command execution with Unit Architecture - foundation component for MetaDev
61 lines (60 loc) • 1.94 kB
JSON
{
"name": "@synet/shell-exec",
"version": "1.0.0",
"description": "Safe shell command execution with Unit Architecture - foundation component for MetaDev",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synthetism/shell-exec.git"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev:test": "vitest",
"demo": "tsx demo/demo-simple.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"coverage": "vitest run --coverage",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write './src'",
"prepublishOnly": "npm run lint:fix && npm run test && npm run build",
"version:dev": "npm version --no-git-tag-version prerelease --preid=dev",
"version:patch": "npm version --no-git-tag-version patch",
"version:minor": "npm version --no-git-tag-version minor",
"version:major": "npm version --no-git-tag-version major",
"publish:dev": "npm publish --registry=https://registry.dig.run/ --tag dev",
"publish:prod": "npm publish --registry=https://registry.npmjs.org/",
"release:dev": "npm run version:dev && npm run publish:dev",
"release:patch": "npm run version:patch && npm run publish:prod",
"release:minor": "npm run version:minor && npm run publish:prod",
"release:major": "npm run version:major && npm run publish:prod"
},
"dependencies": {
"@synet/unit": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.31",
"@vitest/coverage-v8": "^3.1.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"keywords": [
"shell",
"command",
"execution",
"unit architecture",
"metadev"
],
"engines": {
"node": ">=18.0.0"
}
}