-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
99 lines (99 loc) · 2.67 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
96
97
98
99
{
"name": "@collapsed/react",
"version": "5.1.0",
"author": "Rogin Farrer <[email protected]>",
"description": "A React custom-hook for creating flexible and accessible expand/collapse components.",
"license": "MIT",
"type": "module",
"main": "./dist/useCollapse.cjs",
"module": "./dist/useCollapse.js",
"types": "./dist/useCollapse.d.ts",
"exports": {
".": {
"require": "./dist/useCollapse.cjs",
"import": "./dist/useCollapse.js",
"types": "./dist/useCollapse.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "np --no-2fa",
"cypress:run": "cypress run --component"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@chromatic-com/storybook": "^1",
"@collapsed-internal/build": "workspace:*",
"@collapsed-internal/tsconfig": "workspace:*",
"@cypress/vite-dev-server": "^5.0.0",
"@storybook/addon-a11y": "^8.1.3",
"@storybook/addon-actions": "^8.1.3",
"@storybook/addon-essentials": "^8.1.3",
"@storybook/addon-links": "^8.1.3",
"@storybook/react": "^8.1.3",
"@storybook/react-vite": "^8.1.3",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^13.4.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/styled-components": "^5.0.1",
"@types/testing-library__jest-dom": "^6.0.0",
"@types/testing-library__react": "^10.2.0",
"@vitejs/plugin-react": "^4.3.0",
"babel-loader": "^8.2.2",
"cypress": "^13.12.0",
"eslint-config-collapsed": "workspace:*",
"happy-dom": "^14.12.0",
"np": "^6.4.0",
"react": "^18",
"react-docgen-typescript-loader": "^3.7.1",
"react-dom": "^18",
"styled-components": "^5.2.0",
"tslib": "^2.4.1",
"tsup": "^8",
"typescript": "^5.4",
"vite": "^4.5.3",
"vitest": "^1.6.0"
},
"dependencies": {
"@collapsed/core": "workspace:*",
"tiny-warning": "^1.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/roginfarrer/collapsed.git",
"directory": "packages/react"
},
"keywords": [
"collapse",
"react",
"collapsible",
"animate",
"height",
"render",
"expand",
"hooks",
"auto"
],
"publishConfig": {
"access": "public"
}
}