-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.41 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.41 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-lasso-select",
"version": "2.0.3",
"description": "A responsive react tool for marking irregular areas in images (lasso / free select)",
"author": "akcyp",
"license": "ISC",
"keywords": [
"lasso",
"free-select",
"react",
"image",
"responsive",
"reactjs",
"crop"
],
"repository": {
"type": "git",
"url": "git+https://github.com/akcyp/react-lasso-select.git"
},
"homepage": "https://github.com/akcyp/react-lasso-select#readme",
"bugs": {
"url": "https://github.com/akcyp/react-lasso-select/issues"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"style": "dist/index.css",
"files": [
"dist"
],
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc -b && vite build",
"build:ci": "pnpm run build -m build:ci",
"dev": "rimraf dist && vite",
"prod": "pnpm run build && vite",
"lint": "eslint .",
"format": "prettier -c .",
"test": "vitest",
"preview": "vite preview",
"prepare": "husky",
"prepublishOnly": "pnpm run build"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"engines": {
"node": "^22.10.6",
"pnpm": "^10.15.1"
},
"peerDependencies": {
"prop-types": "^15.8.1",
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.6",
"@types/prop-types": "^15.7.14",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-eslint2": "^5.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
}
}