-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.71 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.71 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
{
"name": "@opensourceframework/react-virtualized",
"description": "React components for efficiently rendering large, scrollable lists and tabular data",
"author": "OpenSource Framework Contributors (fork), Original: Brian Vaughn",
"version": "9.22.9",
"homepage": "https://github.com/riceharvest/opensourceframework/tree/main/packages/react-virtualized#readme",
"main": "dist/index.js",
"module": "dist/index.mjs",
"jsnext:main": "dist/es/index.js",
"license": "MIT",
"scripts": {
"build:types": "flow-copy-source --ignore \"**/*.{jest,e2e,ssr,example}.js\" source/WindowScroller dist/es/WindowScroller && flow-copy-source --ignore \"**/*.{jest,e2e,ssr,example}.js\" source/AutoSizer dist/es/AutoSizer",
"build": "tsup",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint \"source-stripped/**/*.jsx\" --ignore-pattern examples",
"typecheck": "tsc --noEmit",
"prettier": "prettier --write '{playground,source,docs}/**/*.{js,md}'",
"prettier:diff": "prettier --list-different '{playground,source,docs}/**/*.{js,md}'",
"start": "tsup --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist",
"index.d.ts",
"styles.css",
"llms.txt"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riceharvest/opensourceframework.git",
"directory": "packages/react-virtualized"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"list",
"scrolling",
"infinite",
"virtualized",
"table",
"fixed",
"header",
"flex",
"flexbox",
"grid",
"spreadsheet"
],
"bugs": {
"url": "https://github.com/riceharvest/opensourceframework/issues?q=is%3Aissue+is%3Aopen+react-virtualized"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^2.1.9",
"eslint-plugin-jest": "^29.15.0",
"immutable": "^5.1.5",
"jsdom": "^24.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"clsx": "^1.0.4",
"dom-helpers": "^5.1.3",
"loose-envify": "^1.4.0",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"types": "index.d.ts"
}