@fxi/shiny-manager
Version:
A package for managing R Shiny application processes with a programmable proxy
59 lines (58 loc) • 1.35 kB
JSON
{
"name": "@fxi/shiny-manager",
"version": "1.0.6",
"description": "A package for managing R Shiny application processes with a programmable proxy",
"main": "dist/index.js",
"bin": {
"shiny-manager": "./dist/bin/shiny-manager.js"
},
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:r": "node dist/bin/shiny-manager.js demo/app.R 8080",
"test:docker": "./docker.test.sh",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"release": "npm publish --access public",
"dev": "cd client && npm run dev",
"build": "node build/build.js"
},
"keywords": [
"shiny",
"r",
"proxy",
"process-manager",
"web-socket",
"reverse-proxy"
],
"author": "fxi",
"license": "MIT",
"dependencies": {
"express": "^4.21.2",
"http-proxy": "^1.18.1",
"socket.io": "^4.8.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.0.7",
"vitest": "^3.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/fxi/shiny-manager.git"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/index.js",
"dist/proxy.js",
"dist/session.js",
"dist/pool.js",
"dist/utils.js",
"dist/bin/",
"dist/public/"
]
}