-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.5 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.5 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
{
"name": "react-adaptive-perf",
"version": "1.0.5",
"description": "Adaptive performance library for React — runtime device capability detection, FPS-based animation tiering, and drop-in fallbacks for Framer Motion and Lottie",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite --config vite.demo.config.ts",
"build": "tsup",
"build:demo": "vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"lint": "eslint src demo --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"performance",
"adaptive",
"animation",
"accessibility",
"reduced-motion",
"prefers-reduced-motion",
"fps",
"benchmark",
"webgl-benchmark",
"optimization",
"framer-motion",
"lottie",
"device-detection",
"device-capability",
"core-web-vitals",
"inp",
"lcp",
"progressive-enhancement",
"ssr",
"react-hooks"
],
"author": "Roland Farkas",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rolandfarkasCOM/react-adaptive-perf.git"
},
"homepage": "https://rolandfarkasCOM.github.io/react-adaptive-perf",
"bugs": {
"url": "https://github.com/rolandfarkasCOM/react-adaptive-perf/issues"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"peerDependenciesMeta": {
"framer-motion": {
"optional": true
},
"lottie-web": {
"optional": true
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"framer-motion": "^12.29.2",
"jsdom": "^24.0.0",
"lottie-web": "^5.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.3.0"
}
}