-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.06 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.06 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
75
76
77
78
{
"name": "@bartaxyz/react-tree-list",
"version": "0.6.0",
"description": "Tree list UI component for React",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench",
"bench:save": "vitest bench --outputJson bench-baseline.json",
"lint": "oxlint src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o .out",
"build": "vite build",
"prepublishOnly": "npm run build",
"prepare": "simple-git-hooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartaxyz/react-tree-list.git"
},
"keywords": [
"tree",
"list",
"ui",
"react"
],
"author": "Ondřej Bárta (@bartaxyz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartaxyz/react-tree-list/issues"
},
"homepage": "https://github.com/bartaxyz/react-tree-list#readme",
"devDependencies": {
"@storybook/addon-essentials": "^8.6.18",
"@storybook/react": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@storybook/test": "^8.6.18",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.0",
"jsdom": "^25.0.1",
"oxlint": "^0.15.0",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.6.18",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vitest": "^4.1.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
},
"dependencies": {
"styled-components": "^6.0.0"
}
}