@galangel/react-scroll-magic 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +93 -0
- package/dist/Scroll/Scroll.d.ts +9 -0
- package/dist/Scroll/Scroll.provider.d.ts +10 -0
- package/dist/Scroll/Scroll.stories.d.ts +7 -0
- package/dist/Scroll/Scroll.test.d.ts +1 -0
- package/dist/Scroll/ScrollHeader.d.ts +6 -0
- package/dist/Scroll/ScrollItem.d.ts +3 -0
- package/dist/Scroll/ScrollList.d.ts +3 -0
- package/dist/Scroll/index.d.ts +10 -0
- package/dist/Scroll/types.d.ts +10 -0
- package/dist/cjs/index.js +27 -0
- package/dist/es/index.js +3767 -0
- package/dist/index.d.ts +1 -0
- package/package.json +69 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Scroll';
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@galangel/react-scroll-magic",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Powerful scroll component that feels like magic!",
|
|
5
|
+
"author": "Gal Angel <gal0angel@gmail.com> (@gal.angel)",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"scroll",
|
|
8
|
+
"react",
|
|
9
|
+
"sticky",
|
|
10
|
+
"list"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"private": false,
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/galangel/react-scroll-magic.git"
|
|
17
|
+
},
|
|
18
|
+
"type": "module",
|
|
19
|
+
"main": "dist/cjs/index.js",
|
|
20
|
+
"module": "dist/esm/index.js",
|
|
21
|
+
"types": "dist/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": "./dist/esm/index.js",
|
|
25
|
+
"require": "./dist/cjs/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": false,
|
|
33
|
+
"scripts": {
|
|
34
|
+
"postinstall": "git config core.hooksPath ./git-hooks",
|
|
35
|
+
"dev": "storybook dev -p 6006",
|
|
36
|
+
"build": "tsc && vite build",
|
|
37
|
+
"build-storybook": "storybook build",
|
|
38
|
+
"format": "prettier --check \"src/**/*.{ts,tsx,css}\"",
|
|
39
|
+
"test": "vitest run",
|
|
40
|
+
"storybook": "storybook dev -p 6006"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"react": "^18.0.0",
|
|
44
|
+
"react-dom": "^18.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@storybook/addon-essentials": "^7.6.17",
|
|
48
|
+
"@storybook/addon-interactions": "^7.6.17",
|
|
49
|
+
"@storybook/addon-links": "^7.6.17",
|
|
50
|
+
"@storybook/blocks": "^7.6.17",
|
|
51
|
+
"@storybook/react": "^7.6.17",
|
|
52
|
+
"@storybook/react-vite": "^7.6.17",
|
|
53
|
+
"@storybook/testing-library": "^0.2.2",
|
|
54
|
+
"@types/node": "^20.11.24",
|
|
55
|
+
"@types/react": "^18.2.56",
|
|
56
|
+
"@types/react-dom": "^18.2.19",
|
|
57
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
58
|
+
"prettier": "^3.4.2",
|
|
59
|
+
"storybook": "^7.6.17",
|
|
60
|
+
"typescript": "^5.2.2",
|
|
61
|
+
"vite": "^5.1.4",
|
|
62
|
+
"vite-plugin-dts": "^3.7.3",
|
|
63
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
64
|
+
"@testing-library/react": "^16.2.0",
|
|
65
|
+
"@testing-library/user-event": "^14.6.0",
|
|
66
|
+
"jsdom": "^26.0.0",
|
|
67
|
+
"vitest": "^3.0.0"
|
|
68
|
+
}
|
|
69
|
+
}
|