-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.74 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
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
{
"name": "visionary-image",
"description": "React image component with built-in Blurhash placeholders for better UX and Core Web Vitals.",
"version": "1.0.4",
"homepage": "https://visionary.cloud",
"type": "module",
"main": "./dist/visionary-image.umd.js",
"module": "./dist/visionary-image.es.js",
"source": "./src/index.ts",
"types": "./dist/visionary-image.d.ts",
"exports": {
".": {
"import": "./dist/visionary-image.es.js",
"require": "./dist/visionary-image.umd.js",
"types": "./dist/visionary-image.d.ts"
}
},
"license": "ISC",
"scripts": {
"build": "tsc && npm run clean && vite build",
"build-storybook": "storybook build -o storybook-static",
"clean": "rimraf dist/",
"dev": "vite",
"lint": "tsc --noEmit; eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006 --no-open",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/visionary-ux/visionary-image.git"
},
"dependencies": {
"classnames": "2.5.1",
"fast-blurhash": "1.1.4",
"react-hook-inview": "4.5.1",
"visionary-url": "1.3.1"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@storybook/addon-essentials": "8.2.7",
"@storybook/react": "8.2.7",
"@storybook/react-vite": "8.2.7",
"@testing-library/react": "14.3.1",
"@types/node": "18.19.1",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"@vitejs/plugin-legacy": "5.4.1",
"@vitejs/plugin-react-swc": "3.7.0",
"eslint": "8.57.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.9",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"jsdom": "24.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "5.0.8",
"sass": "1.69.5",
"storybook": "8.2.7",
"storybook-dark-mode": "4.0.2",
"typescript": "5.5.4",
"vite": "5.3.5",
"vite-plugin-css-injected-by-js": "3.5.1",
"vite-plugin-dts": "3.9.1",
"vitest": "2.0.5",
"vitest-canvas-mock": "0.3.3"
},
"keywords": [
"blurhash",
"cls",
"component",
"core-web-vitals",
"fid",
"image",
"inp",
"performance",
"placeholder",
"react",
"seo",
"speed",
"typescript",
"visionary",
"web-vitals"
]
}