-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.8 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@itsmemyk/react-tree-grid",
"version": "0.5.2",
"type": "module",
"description": "High-performance Grid, Tree, and TreeGrid components for React",
"keywords": [
"react",
"grid",
"tree",
"tree-grid",
"treegrid",
"data-grid",
"table",
"virtualization",
"hierarchical",
"component",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itsmemyk/react-tree-grid.git"
},
"homepage": "https://itsmemyk.github.io/react-tree-grid/",
"bugs": {
"url": "https://github.com/itsmemyk/react-tree-grid/issues"
},
"publishConfig": {
"access": "public"
},
"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"
},
"./grid": {
"types": "./dist/grid.d.ts",
"import": "./dist/grid.js",
"require": "./dist/grid.cjs"
},
"./tree": {
"types": "./dist/tree.d.ts",
"import": "./dist/tree.js",
"require": "./dist/tree.cjs"
},
"./treegrid": {
"types": "./dist/treegrid.d.ts",
"import": "./dist/treegrid.js",
"require": "./dist/treegrid.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build",
"deploy-storybook": "storybook build && touch storybook-static/.nojekyll && gh-pages -d storybook-static -t",
"docs:dev": "vitepress dev website",
"docs:build": "vitepress build website",
"deploy-docs": "vitepress build website && gh-pages -d website/.vitepress/dist --dest docs -t"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.0.0",
"@storybook/addon-a11y": "^8.6.0",
"@storybook/addon-docs": "^8.6.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/react-vite": "^8.6.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.0",
"gh-pages": "^6.3.0",
"happy-dom": "^15.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"storybook": "^8.6.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.5.0",
"vitepress": "^1.6.4",
"vitest": "^2.1.0"
}
}