forked from sasza2/react-panzoom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "@sasza/react-panzoom",
"version": "1.6.5",
"description": "React component for pan and zoom with possibility to moving and selecting elements inside",
"main": "dist/main.umd.cjs",
"keywords": [
"react",
"pan",
"zoom",
"move",
"panzoom",
"moving",
"selecting"
],
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "ladle serve",
"lint": "eslint src --fix",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sasza2/react-panzoom.git"
},
"author": "sasza",
"contributors": [
"HighLiuk"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sasza2/react-panzoom/issues"
},
"browser": {
"[module-name]": false
},
"devDependencies": {
"@ladle/react": "^2.4.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.4",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-react": "^7.31.11",
"jsdom": "^20.0.3",
"react": "16.14.0",
"react-dom": "16.14.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.2"
},
"peerDependencies": {
"react": ">=16.14.0"
}
}