-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
88 lines (88 loc) · 2.73 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
{
"name": "react-img-mapper",
"version": "2.0.0",
"description": "React Component to highlight interactive zones in images",
"keywords": [
"react",
"react-img-mapper",
"react-image-mapper",
"img-mapper",
"image-mapper",
"img mapper",
"image mapper",
"docs react img mapper",
"react img mapper docs",
"docs react image mapper",
"react image mapper docs"
],
"homepage": "https://img-mapper.github.io/react-img-mapper",
"bugs": {
"url": "https://github.com/img-mapper/react-img-mapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/img-mapper/react-img-mapper.git"
},
"license": "MIT",
"author": "Nisharg Shah",
"type": "commonjs",
"main": "dist/ImageMapper.js",
"types": "dist/ImageMapper.d.ts",
"scripts": {
"build": "pnpm tsc",
"lint": "pnpm eslint --ignore-pattern=.gitignore,.eslintignore .",
"lint:fix": "pnpm lint --fix",
"playground:dev": "pnpm --dir ./playground run dev",
"playground:install": "pnpm --dir ./playground install",
"docs:dev": "pnpm --dir ./docs run dev",
"docs:install": "pnpm --dir ./docs install",
"docs:deploy": "pnpm --dir ./docs run deploy",
"prepare": "pnpm husky && pnpm ts-patch install -s",
"prepublishOnly": "pnpm build",
"prettier:check": "pnpm prettier:init --check",
"prettier:fix": "pnpm prettier:init --write",
"prettier:init": "pnpm prettier \"**/*.{js,jsx,ts,tsx,css,scss,json,md}\"",
"script:lint": "bash -e ./scripts/lint.sh",
"ts": "pnpm tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"react-fast-compare": "^3.2.2"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.2",
"prettier": "^3.4.2",
"react": "^19.0.0",
"ts-patch": "^3.3.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-transform-paths": "^3.5.3"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x || 19.x",
"react-dom": "16.x || 17.x || 18.x || 19.x"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"npm": ">=8",
"pnpm": ">=8",
"yarn": ">=1.22"
}
}