-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "react-prismazoom",
"version": "3.3.5",
"description": "A pan and zoom component for React, using CSS transformations.",
"author": "Sylvain Dubus <svn.dbs@gmail.com>",
"contributors": [
"Erick Estevão Riva Pramio <erickriva@hotmail.com.br>"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/sylvaindubus/react-prismazoom"
},
"keywords": [
"react",
"react-component",
"zoom",
"pan",
"drag",
"pinch-zoom",
"css3"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build-watch": "npm run build:esm -- -w && npm run build:cjs -- -w",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src/** --fix"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.1.1",
"parcel": "^2.8.1",
"parcel-bundler": "^1.12.5",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.9.4"
},
"optionalDependencies": {
"fsevents": "*"
}
}