-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.84 KB
/
package.json
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
{
"name": "react-virtualized-auto-sizer",
"version": "1.0.21",
"description": "Standalone version of the AutoSizer component from react-virtualized",
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
"contributors": [
"Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bvaughn/react-virtualized-auto-sizer.git"
},
"keywords": [
"react",
"reactjs",
"virtual",
"window",
"windowed",
"list",
"scrolling",
"infinite",
"virtualized",
"table",
"grid",
"spreadsheet"
],
"main": "dist/react-virtualized-auto-sizer.cjs.js",
"module": "dist/react-virtualized-auto-sizer.esm.js",
"exports": {
".": {
"types": {
"import": "./dist/react-virtualized-auto-sizer.cjs.mjs",
"default": "./dist/react-virtualized-auto-sizer.cjs.js"
},
"module": "./dist/react-virtualized-auto-sizer.esm.js",
"import": "./dist/react-virtualized-auto-sizer.cjs.mjs",
"default": "./dist/react-virtualized-auto-sizer.cjs.js"
},
"./package.json": "./package.json"
},
"types": "dist/react-virtualized-auto-sizer.cjs.d.ts",
"files": [
"dist"
],
"scripts": {
"clear": "npm run clear:builds & npm run clear:node_modules",
"clear:builds": "rm -rf ./dist",
"clear:node_modules": "rm -rf ./node_modules",
"prerelease": "preconstruct build",
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
"prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
"test": "jest",
"test:watch": "jest --watch",
"typescript": "tsc --noEmit",
"typescript:watch": "tsc --noEmit --watch"
},
"lint-staged": {
"{example,src}/**/*.{js,json,css}": [
"prettier --write",
"git add"
],
"**/*.js": "eslint --max-warnings 0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/helper-create-class-features-plugin": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@preconstruct/cli": "^2.8.1",
"@types/jest": "^26.0.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.6",
"react": "^18",
"react-dom": "^18",
"ts-jest": "^29.1.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0",
"react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0"
},
"preconstruct": {
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
}
}