forked from dalphyx/vue-headroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "vue3-headroom",
"version": "0.0.1",
"description": "Headroom component for Vue3",
"type": "module",
"main": "./dist/vue-headroom.umd.js",
"module": "./dist/vue-headroom.js",
"browser": "./dist/vue-headroom.umd.js",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint ./src/*.js",
"build": "vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"gh-pages": "gh-pages -d docs -m 'Deployed to Github Pages'",
"release": "standard-version && npm run build && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalphyx/vue-headroom.git"
},
"author": "dalphyx <wjcbmk@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalphyx/vue-headroom/issues"
},
"homepage": "https://github.com/dalphyx/vue-headroom#readme",
"devDependencies": {
"@icij/eslint-config": "^1.1.0",
"@types/node": "^20.11.24",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.57.0",
"gh-pages": "^6.1.1",
"release-please": "^16.9.0",
"vite": "^5.1.5",
"vue": "^3.4.21"
},
"peerDependencies": {
"vue": "^3.4.21"
}
}