-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "react-diff-image",
"version": "1.5.0",
"description": "Zero-dependency component for multi-modal image comparison and review.",
"files": [
"dist",
"images"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ianobermiller/react-diff-image.git"
},
"keywords": [
"compare",
"comparison",
"diff",
"image",
"react",
"review"
],
"author": "Ian Obermiller <ian@obermillers.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianobermiller/react-diff-image/issues"
},
"homepage": "https://github.com/ianobermiller/react-diff-image#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"eslint": "^9.16.0",
"eslint-plugin-perfectionist": "^4.2.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"terser": "^5.37.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"scripts": {
"build": "tsup",
"demo:build": "tsup --config tsup-demo.config.ts",
"demo:watch": "tsup --config tsup-demo.config.ts --watch",
"demo:serve": "npx serve dist-demo",
"tsc": "tsc",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --check src",
"format:fix": "prettier --write src",
"prepublishOnly": "npm run build && npm run tsc && npm run lint && npm run format"
}
}