-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 1.95 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
{
"name": "@sasza/react-panzoom",
"version": "1.18.1",
"description": "React component for pan and zoom with possibility to moving, resizing and selecting elements inside",
"main": "dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs",
"types": "./types/index.d.ts"
}
},
"keywords": [
"react",
"pan",
"zoom",
"move",
"panzoom",
"moving",
"selecting"
],
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"changeset": "changeset",
"dev": "ladle serve",
"lint": "eslint src --fix",
"test": "vitest",
"publish:package": "changeset publish",
"version:package": "changeset version"
},
"publishConfig": {
"access": "public"
},
"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": {
"@changesets/cli": "2.27.1",
"@ladle/react": "2.16.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"changeset": "0.2.6",
"eslint": "8.45.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"jsdom": "22.1.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"typescript": "5.1.6",
"vite": "4.4.6",
"vitest": "0.33.0"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"dependencies": {
"panzoom-core": "1.8.1"
}
}