UNPKG

@utsp/runtime-server

Version:

Server-side runtime for UTSP applications (Node.js, headless)

65 lines 1.55 kB
{ "name": "@utsp/runtime-server", "version": "0.4.0", "description": "Server-side runtime for UTSP applications (Node.js, headless)", "author": "THP Software", "license": "MIT", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "repository": { "type": "git", "url": "https://github.com/thp-software/utsp.git", "directory": "packages/runtime-server" }, "bugs": { "url": "https://github.com/thp-software/utsp/issues" }, "homepage": "https://github.com/thp-software/utsp/tree/master/packages/runtime-server#readme", "keywords": [ "utsp", "runtime", "server", "multi-user", "terminal", "nodejs", "headless" ], "engines": { "node": ">=18.0.0" }, "sideEffects": false, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "dependencies": { "@utsp/core": "0.4.0", "@utsp/network-server": "0.4.0", "@utsp/types": "0.4.0" }, "devDependencies": { "@types/node": "^20.0.0", "typescript": "^5.3.3" }, "scripts": { "build": "node ../../scripts/build-package.mjs packages/runtime-server", "dev": "tsc --watch", "clean": "rimraf dist", "lint": "eslint \"src/**/*.ts\" --max-warnings 0", "lint:fix": "eslint \"src/**/*.ts\" --fix", "typecheck": "tsc --noEmit" } }