UNPKG

nano-invoke

Version:

Simple IPC client for Nano Framework applications

73 lines 1.75 kB
{ "name": "nano-invoke", "version": "1.0.0", "description": "Simple IPC client for Nano Framework applications", "author": "Imperium Industries <uziidevelopment@gmail.com>", "maintainers": [ { "name": "Imperium Industries | Microcode Labs", "email": "uziidevelopment@gmail.com", "url": "https://imperiuminteractive.com" } ], "license": "MIT", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist/", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "build:watch": "tsc --watch", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build", "test": "echo \"No tests yet\" && exit 0", "lint": "echo \"No linting configured\" && exit 0", "typecheck": "tsc --noEmit" }, "keywords": [ "nano", "framework", "ipc", "invoke", "desktop", "rust", "typescript", "client", "rpc", "websocket", "tauri-alternative", "electron-alternative" ], "repository": { "type": "git", "url": "https://github.com/imperium-industries/nano-invoke.git" }, "homepage": "https://imperiuminteractive.com", "bugs": { "url": "https://github.com/imperium-industries/nano-invoke/issues", "email": "uziidevelopment@gmail.com" }, "publishConfig": { "access": "public" }, "devDependencies": { "typescript": "^5.0.0", "rimraf": "^5.0.0" }, "peerDependencies": {}, "dependencies": {}, "engines": { "node": ">=16.0.0" } }