-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.35 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.35 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
106
107
108
109
{
"name": "react-vtree",
"version": "3.0.0",
"description": "React component for efficiently rendering large tree structures",
"keywords": [
"infinite",
"react",
"react-component",
"react-virtualized",
"reactjs",
"tree",
"virtual",
"virtualized"
],
"homepage": "https://github.com/Lodin/react-vtree#readme",
"bugs": {
"url": "https://github.com/Lodin/react-vtree/issues"
},
"license": "MIT",
"author": "Vlad Rindevich <rindevich.vs@gmail.com> (https://github.com/Lodin)",
"repository": {
"type": "git",
"url": "git+https://github.com/Lodin/react-vtree.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"check": "concurrently --kill-others-on-fail --group --names lint,oxlint,typecheck,test,build npm:lint npm:oxlint npm:typecheck npm:test npm:build",
"clean": "rimraf coverage dist storybook-static",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"full-prepare": "npm run clean && concurrently --group --names format,lint,typecheck,test,build npm:format:check npm:lint npm:typecheck npm:test npm:build",
"lint": "concurrently npm:eslint npm:oxlint",
"lint:fix": "npm run oxlint:fix && npm run eslint:fix",
"eslint": "eslint . --flag unstable_native_nodejs_ts_config",
"eslint:fix": "npm run eslint -- --fix",
"oxlint": "oxlint -c .oxlintrc.json",
"oxlint:fix": "npm run oxlint -- --fix",
"prepublishOnly": "npm run full-prepare",
"release": "semantic-release -c release.config.ts",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsgo -p tsconfig.json --noEmit"
},
"dependencies": {
"react-merge-refs": "3.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@storybook/react-vite": "10.3.3",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-test-renderer": "19.1.0",
"@types/react-virtualized-auto-sizer": "1.0.8",
"@types/react-window": "1.8.8",
"@typescript/native-preview": "7.0.0-dev.20260330.1",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "4.1.2",
"concurrently": "9.2.1",
"eslint": "9.39.4",
"eslint-config-vaadin": "1.0.0-beta.5",
"eslint-plugin-oxlint": "1.57.0",
"jsdom": "29.0.1",
"lint-staged": "16.4.0",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"oxlint-tsgolint": "0.18.1",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-virtualized-auto-sizer": "2.0.3",
"react-window": "1.8.11",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"storybook": "10.3.3",
"tsdown": "0.21.7",
"tsgolint": "0.0.1",
"typescript": "5.9.3",
"vite": "8.0.3",
"vitest": "4.1.2"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"react-window": ">= 1.8.5"
},
"overrides": {
"vite": "$vite"
}
}