-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "vue-sticky-to-parent",
"public": true,
"author": "sayid.ibragimov",
"license": "MIT",
"version": "1.0.4",
"type": "module",
"files": [
"dist",
"lib",
"LICENSE",
"README.md",
"package.json"
],
"main": "./dist/vue-sticky-to-parent.umd.cjs",
"module": "./dist/vue-sticky-to-parent.js",
"types": "./dist/vue-sticky-to-parent.d.ts",
"exports": {
".": {
"import": "./dist/vue-sticky-to-parent.js",
"require": "./dist/vue-sticky-to-parent.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && npm run types && npm run rename-types",
"postbuild": "rimraf dist/demo.webp dist/vite.svg",
"preview": "vite preview",
"types": "vue-tsc lib/main.ts src/global.d.ts --declaration --allowJs --checkJs --emitDeclarationOnly --skipLibCheck --rootDir . --outFile dist/vue-sticky-to-parent.d.ts",
"rename-types": "node scripts/rename-module.js",
"npm:publish": "npm publish --provenance --access public",
"github:package": "node scripts/rewrite-package.js",
"github:publish": "npm publish --scope=@siibragimov --registry=https://npm.pkg.github.com/ --provenance --access public"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@vitejs/plugin-vue": "^5.0.4",
"rimraf": "^5.0.7",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vue-tsc": "^2.0.24"
},
"repository": {
"type": "git",
"url": "git https://github.com/siibragimov/vue-sticky-to-parent.git"
},
"homepage": "https://github.com/siibragimov/vue-sticky-to-parent#readme",
"bugs": {
"url": "https://github.com/siibragimov/vue-sticky-to-parent/issues"
},
"keywords": [
"vue",
"vue3",
"nuxt3",
"typescript",
"sticky",
"sticky-smooth",
"sticky-to-parent",
"sticky-elements",
"sticky-sidebar",
"sticky-header",
"sticky-footer",
"sticky-scroll",
"sticky-navbar",
"sticky-navigation-bar",
"sticky-menu",
"parallax"
]
}