-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"author": {
"name": "kyre",
"email": "kyrers.eth@gmail.com",
"url": "https://twitter.com/kyre_rs"
},
"bugs": {
"url": "https://github.com/kyrers/sentient-scroller/issues"
},
"dependencies": {
"@emotion/styled": "^11.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"description": "A React library that provides a scroll management component for remembering and navigating back to previous scroll positions.",
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.14",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/kyrers/sentient-scroller#readme",
"keywords": [
"react",
"react navigation",
"react scroll",
"scroll management",
"scroll position",
"scroll tracking"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"name": "sentient-scroller",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test",
"repository": {
"type": "git",
"url": "git+https://github.com/kyrers/sentient-scroller.git"
},
"scripts": {
"build": "pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"test": "jest"
},
"types": "./dist/esm/index.d.ts",
"version": "1.0.2"
}