-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.04 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
{
"name": "react-document-portal",
"version": "1.3.0",
"description": "React component that renders its children inside a portal attached to the document.",
"keywords": [
"react",
"component",
"portal",
"document",
"body",
"ssr"
],
"homepage": "https://github.com/aliebuck/react-document-portal#readme",
"bugs": {
"url": "https://github.com/aliebuck/react-document-portal/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aliebuck/react-document-portal.git"
},
"license": "MIT",
"author": "Alie Buck <830470+aliebuck@users.noreply.github.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/react-document-portal.js",
"require": "./dist/react-document-portal.cjs"
}
},
"main": "./dist/react-document-portal.cjs",
"module": "./dist/react-document-portal.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "npm run build && husky",
"test": "vitest",
"preversion": "npm run lint && npm run coverage"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/eslint-plugin": "^1.5.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.4.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"vite": "^7.2.6",
"vitest": "^4.0.15"
},
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0"
}
}