-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.3 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.3 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
{
"name": "react-strapi-image",
"version": "1.1.0",
"license": "MIT",
"author": "Mikhail Panichev <denis.invader@gmail.com>",
"repository": "github:denisinvader/react-strapi-image",
"keywords": [
"strapi",
"image",
"images"
],
"bugs": {
"url": "https://github.com/denisinvader/react-strapi-image/issues"
},
"type": "module",
"main": "./dist/react-strapi-image.js",
"types": "./dist/react-strapi-image.d.ts",
"module": "./dist/react-strapi-image.js",
"style": "./dist/react-strapi-image.css",
"exports": {
".": {
"import": {
"types": "./dist/react-strapi-image.d.ts",
"default": "./dist/react-strapi-image.js"
},
"require": {
"types": "./dist/react-strapi-image.d.ts",
"default": "./dist/react-strapi-image.cjs"
}
},
"./css": "./dist/react-strapi-image.css",
"./package.json": "./package.json"
},
"files": [
"./dist/**/*"
],
"sideEffects": [
"*.css"
],
"scripts": {
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "tsc -b && eslint src && vitest run && vite build"
},
"peerDependencies": {
"react": "^19 || ^18 || ^17 || ^16.8"
},
"devDependencies": {
"@emotion/css": "^11.13.5",
"@eslint/js": "^9.21.0",
"@faker-js/faker": "^9.6.0",
"@radix-ui/themes": "^3.2.1",
"@storybook/react": "^8.6.8",
"@storybook/react-vite": "^8.6.8",
"@strapi/blocks-react-renderer": "^1.0.2",
"@stylistic/eslint-plugin": "^4.2.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.11",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.6",
"globals": "^16.0.0",
"happy-dom": "^17.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.6.8",
"typescript": "~5.8.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.9"
}
}