-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "cartapus",
"version": "1.3.2",
"type": "module",
"files": [
"dist"
],
"main": "./dist/cartapus.umd.cjs",
"module": "./dist/cartapus.js",
"description": "✨ A small `IntersectionObserver` wrapper helping to detect easily DOM elements entering or leaving the viewport.",
"author": "Jordan Thiervoz",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/cartapus.js",
"require": "./dist/cartapus.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiervoj/cartapus.git"
},
"bugs": {
"url": "https://github.com/thiervoj/cartapus/issues"
},
"homepage": "https://github.com/thiervoj/cartapus#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"globals": "^15.0.0",
"postcss-nesting": "^12.1.1",
"vite": "^5.2.8"
},
"dependencies": {
"tiny-emitter": "^2.1.0"
}
}