-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "react-dropzone-vv",
"description": "react-dropzone-vv is a simple React hook that creates a drag-and-drop zone for files.",
"author": {
"name": "yosipy"
},
"license": "MIT",
"version": "1.0.3",
"keywords": [
"dropzone",
"drag and drop",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/yosipy/react-dropzone-vv"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/lib/index.d.ts",
"exports": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.package.json",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"react": "17.x || 18.x",
"react-dom": "17.x || 18.x"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.7",
"jsdom": "^25.0.0",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vitepress": "^1.3.1",
"vitest": "^2.0.4"
}
}