-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) 路 3.38 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) 路 3.38 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "react-scroll-parallax",
"version": "4.0.0-beta.1",
"description": "React hooks and components to create parallax scroll effects for banners, images or any other DOM elements.",
"keywords": [
"react",
"scroll",
"effects",
"parallax",
"banner",
"animation",
"hooks",
"component"
],
"homepage": "https://react-scroll-parallax.damnthat.tv",
"documentation": "https://react-scroll-parallax.damnthat.tv/llms.txt",
"bugs": "https://github.com/jscottsmith/react-scroll-parallax/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/jscottsmith/react-scroll-parallax.git"
},
"files": [
"dist",
"src"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24"
},
"scripts": {
"start": "tsdown --watch",
"build": "tsdown",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"prettier": "prettier ./ --write",
"lint": "eslint src --ext .ts,.tsx",
"prepare": "tsdown",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "npx np@^11.2.1"
},
"peerDependencies": {
"react": "^16.8.0-0 || >=17.0.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0-0 || >=17.0.1 || ^18.0.0 || ^19.0.0"
},
"author": "J Scott Smith",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "eslint src --ext .ts,.tsx"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"size-limit": [
{
"path": "dist/index.cjs",
"limit": "10 KB"
},
{
"path": "dist/index.mjs",
"limit": "10 KB"
}
],
"dependencies": {
"parallax-controller": "^2.0.0-beta.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@size-limit/preset-small-lib": "^12.1.0",
"@storybook/addon-docs": "^10.4.0",
"@storybook/addon-links": "^10.4.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^10.4.0",
"@storybook/react-vite": "^10.4.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.1",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-plugin-storybook": "^10.4.0",
"husky": "^7.0.4",
"jsdom": "^27.0.0",
"postcss": "^8.5.14",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-is": "^19.1.1",
"react-test-renderer": "^19.1.1",
"sass": "^1.49.11",
"sass-loader": "^10.1.0",
"size-limit": "^12.1.0",
"storybook": "^10.4.0",
"tailwindcss": "^2.2.19",
"tsdown": "^0.22.0",
"tslib": "^2.3.1",
"typescript": "^5.9.2",
"unrun": "^0.3.0",
"vitest": "^3.2.4"
}
}