-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
31 lines (31 loc) · 932 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
31
{
"name": "@inertiajs/progress",
"version": "0.2.7",
"license": "MIT",
"description": "This package adds an NProgress page loading indicator to your Inertia.js app.",
"contributors": [
"Jonathan Reinink <[email protected]>"
],
"source": "src/index.js",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"types": "types.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 dist",
"prepublishOnly": "npm run build",
"watch": "microbundle watch --format cjs"
},
"devDependencies": {
"eslint": "^6.1.0",
"microbundle": "^0.12.0"
},
"dependencies": {
"nprogress": "^0.2.0"
},
"peerDependencies": {
"@inertiajs/inertia": "^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0"
}
}