-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 KB
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
{
"name": "vue-use-intersection-observer",
"version": "2.0.3",
"description": "Simple visibility observer plugin for Vue 3 using IntersectionObserver.",
"keywords": [
"vue",
"vue3",
"composable",
"intersection",
"observer",
"lazy load",
"inview",
"viewport",
"scroll",
"useIntersectionObserver"
],
"type": "module",
"main": "./dist/vue-use-intersection-observer.umd.js",
"module": "./dist/vue-use-intersection-observer.es.js",
"types": "./dist/index.d.ts",
"author": {
"name": "Alberto Mateo Alcalá",
"url": "https://amateo82.es"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-use-intersection-observer.es.js",
"require": "./dist/vue-use-intersection-observer.umd.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.lib.json",
"preview": "vite preview",
"format": "prettier . --write"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"prettier": "^3.7.4",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vue-tsc": "^3.1.4"
}
}