-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "reach-somewhere",
"version": "0.0.6",
"description": "Easily monitor content (scroll) to reach a certain position, in vue react framework.",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsup && esno script/buildAfter.ts",
"publish:r": "pnpm publish -r --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/eddieyg/reach-somewhere.git"
},
"keywords": [
"vue reach",
"react reach",
"reach bottom",
"reach top",
"reach scroll offset"
],
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"publishConfig": {
"directory": "dist"
},
"author": "eddieyg",
"email": "eddiezhao@foxmail.com",
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.42.0",
"esno": "^0.16.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.28.3"
},
"dependencies": {
"@types/react": "^18.2.8",
"lodash": "^4.17.21",
"react": "^18.2.0",
"vue": "^3.3.4"
}
}