-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.51 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
{
"name": "react-bento-grid",
"version": "1.0.2",
"type": "module",
"files": [
"lib"
],
"main": "./lib/react-bento-grid.umd.cjs",
"module": "./lib/react-bento-grid.js",
"typings": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/react-bento-grid.js",
"require": "./lib/react-bento-grid.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build-example": "tsc && vite build --config vite.config.example.ts",
"lib": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-syntax-highlighter": "^15.5.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vite": "^5.2.13"
}
}