-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 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
{
"name": "@tracktor/react-utils",
"description": "React data table and react data grid",
"version": "1.27.1",
"private": false,
"license": "ISC",
"type": "module",
"types": "dist/main.d.ts",
"main": "dist/main.umd.cjs",
"module": "dist/main.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git@github.com/Tracktor/react-utils.git"
},
"author": "Mickaël Austoni",
"bugs": {
"url": "https://github.com/Tracktor/react-utils/issues"
},
"homepage": "https://github.com/Tracktor/react-utils#readme",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"scripts": {
"coverage": "bunx vitest run --coverage",
"dev": "bunx vite",
"build": "bunx tsc && bunx vite build",
"lint": "bunx biome check --diagnostic-level=error . && bunx tsc --noEmit --incremental",
"lint:fix": "bunx biome check . --write",
"preview": "bunx vite preview",
"test": "bunx vitest",
"prepare": "bun run build && bunx husky install"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@tracktor/biome-config-react": "^1.4.0",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react": "^4.1.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^1.6.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"keywords": [
"react",
"react hook",
"react utils"
]
}