UNPKG

phion

Version:

Phion Development Agent and Vite Plugin for seamless code sync and auto-deploy

64 lines (63 loc) 1.37 kB
{ "name": "phion", "version": "0.0.8", "description": "Phion Development Agent and Vite Plugin for seamless code sync and auto-deploy", "main": "dist/index.mjs", "module": "dist/index.mjs", "types": "dist/index.d.mts", "bin": { "phion": "dist/cli.mjs" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "type-check": "tsc --noEmit" }, "keywords": [ "vite", "plugin", "development", "sync", "deploy", "auto-deploy", "code-sync" ], "author": "Phion Team", "license": "MIT", "dependencies": { "@types/safe-json-stringify": "^1.1.5", "chokidar": "^3.5.3", "commander": "^11.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "safe-json-stringify": "^1.2.0", "socket.io": "^4.7.5", "socket.io-client": "^4.7.5", "vite": "^5.0.0" }, "devDependencies": { "@types/node": "^20.10.0", "@types/react": "^18.2.43", "@types/react-dom": "^18.2.17", "@vitejs/plugin-react": "^4.2.1", "tsup": "^8.0.1", "typescript": "^5.3.0" }, "peerDependencies": { "vite": "^4.0.0 || ^5.0.0" }, "files": [ "dist", "README.md" ], "exports": { ".": { "import": "./dist/index.mjs", "types": "./dist/index.d.mts" }, "./plugin": { "import": "./dist/plugin.mjs", "types": "./dist/index.d.mts" } } }