-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
39
40
41
42
43
44
45
46
{
"name": "@vuejs-tips/v-autofocus",
"version": "0.1.1",
"description": "Vue autofocus directive",
"keywords": [
"vue",
"directive",
"autofocus"
],
"main": "dist/v-autofocus.common.js",
"module": "index.js",
"unpkg": "dist/v-autofocus.umd.js",
"jsdelivr": "dist/v-autofocus.umd.js",
"author": "Marcos Neves",
"repository": {
"url": "https://github.com/vuejs-tips/v-autofocus",
"type": "git"
},
"license": "MIT",
"scripts": {
"start": "vue serve App.vue",
"build": "yarn build:lib && yarn build:demo && yarn size",
"build:lib": "vue build --target lib ./index.js",
"build:demo": "cp -f ./demo.html ./dist/demo.html",
"size": "size-limit",
"serve": "serve ./dist/"
},
"files": [
"dist/*",
"README.md"
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.4.5",
"size-limit": "^4.4.5"
},
"size-limit": [
{
"path": "dist/v-autofocus.umd.min.js",
"limit": "614"
},
{
"path": "dist/v-autofocus.common.js",
"limit": "609"
}
]
}