-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.68 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
{
"name": "react-sizer-div",
"version": "1.0.1",
"description": "A styleable div that measures its own size and passes the width and height to a render function.",
"license": "MIT",
"author": "https://github.com/ts-web/",
"funding": "https://github.com/sponsors/ts-web",
"keywords": [
"resizeobserver",
"size",
"react",
"dom",
"measure",
"div",
"element"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ts-web/react-sizer-div.git"
},
"homepage": "https://ts-web.github.io/react-sizer-div/",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepack": "pnpm run build",
"start": "storybook dev -p 6007",
"all": "FORCE_COLOR=1 run-p build chk lint",
"clean": "rimraf lib",
"build-storybook": "storybook build",
"chk": "FORCE_COLOR=1 run-p 'chk:*'",
"chk:tsc-stories": "tsc -p src/stories/tsconfig.json",
"lint": "eslint 'src/**/*' --report-unused-disable-directives",
"watch": "FORCE_COLOR=1 run-p 'watch:*'",
"watch:ts": "tsc -w --preserveWatchOutput",
"storybook": "storybook dev -p 6006"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@babel/preset-typescript": "^7",
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.16.0",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-interactions": "^8.4.6",
"@storybook/addon-onboarding": "^8.4.6",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/react-webpack5": "^8.4.6",
"@storybook/test": "^8.4.6",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.17.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"npm-run-all": "^4.1.5",
"react": "^18",
"react-dom": "^18",
"rimraf": "^6",
"storybook": "^8.4.6",
"tsup": "^8.2.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"files": [
"dist"
],
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}