-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.38 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
{
"name": "@frameright/react-image-display-control",
"description": "Image Display Control React component",
"keywords": [
"metadata",
"image",
"image-manipulation",
"responsive-design",
"responsive-layout",
"responsive-images",
"metadata-extraction",
"metadata-parser",
"iptc-metadata",
"image-display-control",
"frameright",
"image-publishing",
"react",
"react-component",
"reactjs"
],
"version": "1.0.7",
"license": "MIT",
"repository": "https://github.com/Frameright/react-image-display-control",
"author": {
"name": "Frameright (Coberg Ltd)",
"email": "hello@frameright.io",
"url": "https://frameright.io/"
},
"main": "dist/react-image-display-control.min.cjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rollup -c",
"test": "tsc && jest",
"lint": "eslint . --ignore-pattern dist && prettier --check .",
"format": "eslint . --ignore-pattern dist --fix && prettier --write .",
"prepare": "husky install && rollup -c",
"gentoc": "./bin/gentoc.sh"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/react-image-display-control.min.mjs",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.2.7 || ^19.0.2",
"@types/react-dom": "^18.2.4 || ^19.0.2",
"@types/uuid": "^10.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.7",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.5.0",
"markdown-toc": "^1.2.0",
"prettier": "3.4.2",
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0",
"rollup": "^4.0.2",
"ts-jest": "^29.0.0",
"typescript": "^5.2.0"
},
"dependencies": {
"@frameright/image-display-control-metadata-parser": "^2.0.0",
"@frameright/image-display-control-web-component": "^1.1.7",
"tslib": "^2.5.2",
"uuid": "^11.0.2"
}
}