{ "name": "@inertiajs/inertia", "version": "0.11.1", "license": "MIT", "description": "A framework for creating server-driven single page apps.", "contributors": [ "Jonathan Reinink ", "Claudio Dekker ", "Sebastian De Deyne " ], "homepage": "https://inertiajs.com/", "repository": { "type": "git", "url": "https://github.com/inertiajs/inertia.git", "directory": "packages/inertia" }, "bugs": { "url": "https://github.com/inertiajs/inertia/issues" }, "files": ["dist", "types"], "source": "src/index.ts", "main": "dist/index.js", "unpkg": "dist/index.umd.js", "types": "types/index.d.ts", "scripts": { "build": "npm run clean && npm run build:cjs && npm run build:umd", "build:cjs": "microbundle --format cjs", "build:umd": "microbundle --format umd --name Inertia --external none", "clean": "rm -rf types && rm -rf dist", "prepublishOnly": "npm run build", "watch": "microbundle watch --format cjs" }, "dependencies": { "axios": "^0.21.1", "deepmerge": "^4.0.0", "qs": "^6.9.0" }, "devDependencies": { "@types/deepmerge": "^2.2.0", "@types/qs": "^6.9.0", "@typescript-eslint/eslint-plugin": "^4.19.0", "@typescript-eslint/parser": "^4.19.0", "eslint": "^7.23.0", "microbundle": "^0.12.0", "typescript": "^4.2.4" } }