-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.69 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
{
"name": "react-align",
"version": "2.3.1",
"author": "KaWaite",
"license": "MIT",
"main": "./dist/react-align.umd.js",
"module": "./dist/react-align.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-align.mjs",
"require": "./dist/react-align.umd.js"
}
},
"scripts": {
"build": "tsc && vite build",
"type": "tsc",
"test": "vitest",
"lint": "eslint ."
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@hello-pangea/dnd": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "es5"
},
"resolutions": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"**/@types/react": "19.2.10",
"**/@types/react-dom": "19.2.3",
"minimist": "^1.2.8",
"@babel/runtime": "^7.26.10",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-config-reearth": "^0.3.8",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
}
}