forked from diaafares/inertia-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 860 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "@inertiajs/inertia-vue",
"version": "0.1.2",
"description": "The Vue adapter for Inertia.js",
"contributors": [
"Jonathan Reinink <[email protected]>",
"Sebastian De Deyne <[email protected]>"
],
"license": "MIT",
"source": "src/index.js",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"typings": "index.d.ts",
"scripts": {
"build": "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",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@inertiajs/inertia": "^0.1.4",
"eslint": "^6.1.0",
"microbundle": "^0.11.0",
"vue": "^2.0.0"
},
"peerDependencies": {
"@inertiajs/inertia": "^0.1.4",
"vue": "^2.0.0"
}
}