UNPKG

@fly/sprites

Version:

JavaScript/TypeScript SDK for Sprites - remote command execution

58 lines (56 loc) 1.31 kB
{ "name": "@fly/sprites", "version": "0.0.1-dev", "description": "JavaScript/TypeScript SDK for Sprites - remote command execution", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "engines": { "node": ">=24.0.0" }, "scripts": { "build": "tsc", "watch": "tsc --watch", "test": "npm run build && node --test dist/**/*.test.js", "test:unit": "npm run build && node --test dist/exec.test.js", "test:integration": "npm run build && node --test dist/integration.test.js", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build" }, "keywords": [ "sprites", "exec", "remote", "command", "websocket", "child_process" ], "author": "Fly.io", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/superfly/sprites-js.git" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "dist/**/*.d.ts.map", "!dist/**/*.test.*", "README.md", "LICENSE" ], "devDependencies": { "@types/node": "^24.0.0", "typescript": "^5.6.0" } }