forked from ByronMunozG/react-image-area
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@bmunozg/react-image-area",
"description": "React component to select multiple areas/regions of images.",
"author": "Byron Muñoz G. <byron.munoz.godoy@gmail.com> (https://github.com/ByronMunozG)",
"license": "MIT",
"private": false,
"version": "1.0.2",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"react",
"reactjs",
"region",
"image",
"select",
"selection",
"crop",
"area"
],
"scripts": {
"format": "prettier --write \"src/**/*.{ts,tsx,json,js,jsx}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx,json,js,jsx}\"",
"lint": "eslint ./src --ext .ts,.tsx",
"dev": "ladle serve",
"build:example": "ladle build --out ./build --base-url /react-image-area/",
"build": "vite build",
"predeploy": "npm run build:example",
"deploy": "gh-pages -d build",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"devDependencies": {
"@ladle/react": "^0.11.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vitejs/plugin-react": "^1.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"prettier": "^2.6.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-dts": "^0.9.10"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ByronMunozG/react-image-area.git"
},
"bugs": {
"url": "https://github.com/ByronMunozG/react-image-area/issues"
},
"homepage": "https://ByronMunozG.github.io/react-image-area",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}