{
    "name": "live_vue",
    "version": "0.1.0",
    "description": "E2E reactivity for Vue and LiveView",
    "license": "MIT",
    "author": "Jakub Skałecki <jakub@skalecki.dev>",
    "type": "module",
    "scripts": {
        "format": "npx prettier --write assets",
        "build": "rm -rf priv/static && tsc --project tsconfig.client.json && tsc --project tsconfig.server.json",
        "dev": "concurrently \"tsc --watch --project tsconfig.client.json\" \"tsc --watch --project tsconfig.server.json\""
    },
    "devDependencies": {
        "@types/node": "^22.9.1",
        "@types/phoenix_live_view": "^0.20.0",
        "concurrently": "^9.0.1",
        "prettier": "2.8.7",
        "typescript": "^5.6.2",
        "vite": "^5.4.8",
        "vue": "^3.5.10"
    },
    "main": "priv/static/index.js",
    "types": "priv/static/types.d.ts",
    "exports": {
        "./vitePlugin": {
            "import": "./priv/static/vitePlugin.js",
            "types": "./priv/static/vitePlugin.d.ts"
        },
        "./server": {
            "import": "./priv/static/server.js",
            "types": "./priv/static/server.d.ts"
        },
        ".": {
            "import": "./priv/static/index.js",
            "types": "./priv/static/index.d.ts"
        }
    },
    "repository": {
        "type": "git",
        "url": "git://github.com/Valian/live_vue.git"
    },
    "files": [
        "README.md",
        "LICENSE.md",
        "package.json",
        "priv/static/*",
        "priv/static/*.d.ts"
    ]
}
