-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
79 lines (79 loc) · 1.94 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
{
"name": "react-quick-pinch-zoom",
"version": "5.1.0",
"main": "cmj/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"dependencies": {
"tslib": ">=2.0.0"
},
"peerDependencies": {
"react": ">=16.4.0",
"react-dom": ">=16.4.0",
"prop-types": ">=15.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"prop-types": {
"optional": true
}
},
"scripts": {
"docs": "npx doctoc docs/api/README.md",
"ci": "yarn size && yarn test",
"test": "jest --silent",
"presize": "yarn build",
"size": "size-limit",
"prebuild": "rm -rf esm cmj",
"build": "tsc --module ES2022 --declaration true --outDir esm && tsc --module CommonJS --outDir cmj",
"postbuild": "prettier --write cmj/**/*.js esm/**/*.js esm/**/*.d.ts",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@size-limit/preset-small-lib": "^11.0.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.58",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^11.0.2",
"typescript": "^5.3.3"
},
"resolutions": {
"@types/react": "^18.2.58"
},
"files": [
"cmj",
"esm",
"!*.test.*"
],
"description": "A react component that providing multi-touch gestures for zooming and dragging on any DOM element.",
"author": "David Nrb <[email protected]>",
"license": "MIT",
"repository": "retyui/react-quick-pinch-zoom",
"keywords": [
"drag",
"gesture",
"pan",
"pinch",
"pinchzoom",
"react",
"reactjs",
"touch",
"zoom"
]
}