scroll-system 1.0.1

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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "scroll-system",
3
+ "version": "1.0.1",
4
+ "description": "TikTok-style vertical scroll system with snap views, touch physics, and accessibility features",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsup index.ts --format cjs,esm --dts",
10
+ "test": "vitest",
11
+ "test:run": "vitest run",
12
+ "prepublishOnly": "npm run test:run && npm run build"
13
+ },
14
+ "keywords": [
15
+ "scroll",
16
+ "snap",
17
+ "tiktok",
18
+ "react",
19
+ "navigation",
20
+ "touch",
21
+ "swipe",
22
+ "accessibility",
23
+ "a11y"
24
+ ],
25
+ "author": "Joel Starck",
26
+ "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/JoelSoy/scroll-system.git"
30
+ },
31
+ "homepage": "https://github.com/JoelSoy/scroll-system#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/JoelSoy/scroll-system/issues"
34
+ },
35
+ "peerDependencies": {
36
+ "react": ">=18.0.0",
37
+ "react-dom": ">=18.0.0",
38
+ "zustand": ">=4.0.0",
39
+ "tailwindcss": ">=3.0.0"
40
+ },
41
+ "devDependencies": {
42
+ "tsup": "^8.0.0",
43
+ "typescript": "^5.0.0",
44
+ "vitest": "^1.0.0",
45
+ "jsdom": "^24.0.0",
46
+ "@vitejs/plugin-react": "^4.0.0",
47
+ "@testing-library/react": "^14.0.0",
48
+ "@testing-library/jest-dom": "^6.0.0"
49
+ },
50
+ "exports": {
51
+ ".": {
52
+ "types": "./dist/index.d.ts",
53
+ "import": "./dist/index.mjs",
54
+ "require": "./dist/index.js"
55
+ }
56
+ },
57
+ "files": [
58
+ "dist",
59
+ "README.md",
60
+ "LICENSE"
61
+ ],
62
+ "sideEffects": false,
63
+ "publishConfig": {
64
+ "access": "public"
65
+ }
66
+ }