This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@titicaca/intersection-observer",
"version": "14.2.2",
"description": "Shared IntersecionObserver component",
"license": "MIT",
"homepage": "https://github.com/titicacadev/triple-frontend/tree/main/packages/intersection-observer",
"repository": {
"type": "git",
"url": "git+https://github.com/titicacadev/triple-frontend.git"
},
"bugs": {
"url": "https://github.com/titicacadev/triple-frontend/issues"
},
"sideEffects": false,
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts"
},
"files": [
"lib"
],
"scripts": {
"build": "vite build",
"lint:es": "eslint src",
"lint:es:fix": "eslint src --fix",
"lint:style": "stylelint 'src/**/*.{js,ts,tsx}'",
"lint:style:fix": "stylelint 'src/**/*.{js,ts,tsx}' --fix",
"lint:etc": "prettier src --check",
"lint:etc:fix": "prettier src --write"
},
"lint-staged": {
"*": [
"prettier --check"
],
"*.{js,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"@titicaca/react-intersection-observer": "1.7.0",
"intersection-observer": "^0.12.2"
},
"devDependencies": {
"next": "^14.2.24",
"react": "^18.3.1"
},
"peerDependencies": {
"next": "^13.4 || ^14.0",
"react": "^18.0"
}
}