UNPKG

open-collaboration-service-process

Version:

A service process for integrating non Typescript projects with the Open Collaboration Tools project

69 lines (68 loc) 1.79 kB
{ "name": "open-collaboration-service-process", "version": "0.3.0", "license": "MIT", "description": "A service process for integrating non Typescript projects with the Open Collaboration Tools project", "files": [ "bin", "lib", "src" ], "type": "module", "main": "./lib/messages.js", "module": "./lib/messages.js", "exports": { ".": { "types": "./lib/messages.d.ts", "default": "./lib/messages.js" } }, "typesVersions": { "*": { ".": [ "lib/messages.d.ts" ] } }, "bin": { "oct-daemon-service": "./bin/service" }, "scripts": { "start": "node lib/process.js", "start:direct": "tsx src/process.ts", "build": "esbuild ./lib/process.js --bundle --platform=node --format=esm --outfile=lib/bundle.js", "create:executable": "npm run build && shx mkdir -p bin && node --experimental-sea-config sea-config.json && node scripts/sea-build.mjs" }, "dependencies": { "async-mutex": "~0.5.0", "commander": "~13.1.0", "open-collaboration-yjs": "~0.3.0", "open-collaboration-protocol": "~0.3.0", "vscode-jsonrpc": "~8.2.1" }, "keywords": [ "collaboration", "live-share" ], "repository": { "type": "git", "url": "https://github.com/eclipse-oct/open-collaboration-tools", "directory": "packages/open-collaboration-server" }, "bugs": { "url": "https://github.com/eclipse-oct/open-collaboration-tools/issues" }, "homepage": "https://www.open-collab.tools/", "author": { "name": "TypeFox", "url": "https://www.typefox.io/" }, "volta": { "node": "22.14.0", "npm": "10.9.2" }, "engines": { "node": ">=20.10.0", "npm": ">=10.2.3" } }