|
2 | 2 | "name": "react-vtree", |
3 | 3 | "version": "3.0.0", |
4 | 4 | "description": "React component for efficiently rendering large tree structures", |
| 5 | + "keywords": [ |
| 6 | + "infinite", |
| 7 | + "react", |
| 8 | + "react-component", |
| 9 | + "react-virtualized", |
| 10 | + "reactjs", |
| 11 | + "tree", |
| 12 | + "virtual", |
| 13 | + "virtualized" |
| 14 | + ], |
| 15 | + "homepage": "https://github.com/Lodin/react-vtree#readme", |
| 16 | + "bugs": { |
| 17 | + "url": "https://github.com/Lodin/react-vtree/issues" |
| 18 | + }, |
| 19 | + "license": "MIT", |
| 20 | + "author": "Vlad Rindevich <rindevich.vs@gmail.com> (https://github.com/Lodin)", |
| 21 | + "repository": { |
| 22 | + "type": "git", |
| 23 | + "url": "git+https://github.com/Lodin/react-vtree.git" |
| 24 | + }, |
| 25 | + "files": [ |
| 26 | + "dist" |
| 27 | + ], |
5 | 28 | "type": "module", |
6 | 29 | "types": "./dist/index.d.ts", |
7 | 30 | "exports": { |
|
11 | 34 | }, |
12 | 35 | "./package.json": "./package.json" |
13 | 36 | }, |
14 | | - "files": [ |
15 | | - "dist" |
16 | | - ], |
17 | 37 | "scripts": { |
18 | 38 | "build": "tsdown", |
19 | 39 | "build:watch": "tsdown --watch", |
20 | 40 | "check": "concurrently --kill-others-on-fail --group --names lint,oxlint,typecheck,test,build npm:lint npm:oxlint npm:typecheck npm:test npm:build", |
21 | 41 | "clean": "rimraf coverage dist storybook-static", |
22 | 42 | "format": "oxfmt --write .", |
23 | 43 | "format:check": "oxfmt --check .", |
24 | | - "full-prepare": "npm run clean && concurrently --kill-others-on-fail --group --names format,lint,oxlint,typecheck,test,build npm:format:check npm:lint npm:oxlint npm:typecheck npm:test npm:build", |
| 44 | + "full-prepare": "npm run clean && concurrently --group --names format,lint,typecheck,test,build npm:format:check npm:lint npm:typecheck npm:test npm:build", |
25 | 45 | "lint": "concurrently npm:eslint npm:oxlint", |
26 | 46 | "lint:fix": "npm run oxlint:fix && npm run eslint:fix", |
27 | 47 | "eslint": "eslint . --flag unstable_native_nodejs_ts_config", |
28 | 48 | "eslint:fix": "npm run eslint -- --fix", |
29 | 49 | "oxlint": "oxlint -c .oxlintrc.json", |
30 | 50 | "oxlint:fix": "npm run oxlint -- --fix", |
| 51 | + "prepublishOnly": "npm run full-prepare", |
31 | 52 | "release": "semantic-release -c release.config.ts", |
32 | 53 | "storybook": "storybook dev -p 6006", |
33 | 54 | "storybook:build": "storybook build", |
|
36 | 57 | "test:watch": "vitest", |
37 | 58 | "typecheck": "tsgo -p tsconfig.json --noEmit" |
38 | 59 | }, |
39 | | - "repository": { |
40 | | - "type": "git", |
41 | | - "url": "git+https://github.com/Lodin/react-vtree.git" |
42 | | - }, |
43 | | - "keywords": [ |
44 | | - "infinite", |
45 | | - "react", |
46 | | - "reactjs", |
47 | | - "react-component", |
48 | | - "react-virtualized", |
49 | | - "tree", |
50 | | - "virtual", |
51 | | - "virtualized" |
52 | | - ], |
53 | | - "author": "Vlad Rindevich <rindevich.vs@gmail.com> (https://github.com/Lodin)", |
54 | | - "license": "MIT", |
55 | | - "bugs": { |
56 | | - "url": "https://github.com/Lodin/react-vtree/issues" |
| 60 | + "dependencies": { |
| 61 | + "react-merge-refs": "3.0.2" |
57 | 62 | }, |
58 | | - "homepage": "https://github.com/Lodin/react-vtree#readme", |
59 | 63 | "devDependencies": { |
60 | 64 | "@semantic-release/changelog": "6.0.3", |
61 | 65 | "@semantic-release/git": "10.0.1", |
|
99 | 103 | "react-dom": ">=18", |
100 | 104 | "react-window": ">= 1.8.5" |
101 | 105 | }, |
102 | | - "dependencies": { |
103 | | - "react-merge-refs": "3.0.2" |
104 | | - }, |
105 | 106 | "overrides": { |
106 | 107 | "vite": "$vite" |
107 | 108 | } |
|
0 commit comments