-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
38 lines (38 loc) · 1.07 KB
/
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
32
33
34
35
36
37
38
{
"name": "vue-routisan",
"description": "Elegant, fluent route definitions for Vue Router, inspired by Laravel.",
"version": "3.0.0-beta.5",
"author": "@mikerockett",
"license": "ISC",
"homepage": "https://vue-routisan.rockett.pw",
"bugs": "https://github.com/mikerockett/vue-routisan/issues",
"source": "src/main.js",
"main": "dist/vue-routisan.js",
"keywords": [
"vue",
"vuejs",
"vue-router",
"laravel",
"guard",
"middleware",
"artisan"
],
"repository": {
"type": "git",
"url": "https://github.com/mikerockett/vue-routisan.git"
},
"mangle": {
"regex": "^_"
},
"scripts": {
"clean": "rimraf dist/*",
"bundle": "esbuild src/main.js --platform=node --bundle --format=esm --minify --outfile=dist/vue-routisan.js",
"watch": "yarn clean && esbuild src/main.js --platform=node --bundle --format=esm --sourcemap --watch --outfile=dist/vue-routisan.js",
"build": "yarn clean && yarn bundle",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"esbuild": "^0.13.2",
"rimraf": "^3.0.2"
}
}