45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "@inertiajs/inertia-vue3",
|
|
"version": "0.6.0",
|
|
"license": "MIT",
|
|
"description": "The Vue 3 adapter for Inertia.js",
|
|
"contributors": [
|
|
"Jonathan Reinink <jonathan@reinink.ca>"
|
|
],
|
|
"homepage": "https://inertiajs.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/inertiajs/inertia.git",
|
|
"directory": "packages/inertia-vue3"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/inertiajs/inertia/issues"
|
|
},
|
|
"source": "src/index.js",
|
|
"main": "dist/index.js",
|
|
"unpkg": "dist/index.umd.js",
|
|
"typings": "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 InertiaVue --globals vue=Vue,@inertiajs/inertia=Inertia",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "npm run build",
|
|
"watch": "microbundle watch --format cjs"
|
|
},
|
|
"devDependencies": {
|
|
"@inertiajs/inertia": "^0.11.0",
|
|
"eslint": "^7.0.0",
|
|
"microbundle": "^0.12.0",
|
|
"vue": "^3.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@inertiajs/inertia": "^0.11.0",
|
|
"vue": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"lodash.isequal": "^4.5.0"
|
|
}
|
|
}
|