-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "@rocket.chat/storybook-dark-mode",
"version": "4.1.0",
"description": "Toggle between light and dark mode in Storybook (Rocket.Chat fork)",
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/storybook-dark-mode"
},
"license": "MIT",
"author": "Andrew Lisowski <lisowski54@gmail.com>",
"contributors": [
"Rocket.Chat Technologies Corp."
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/ts/index.d.ts",
"files": [
"src",
"dist",
"preset.js"
],
"scripts": {
"prepare": "yarn build",
"build": "rimraf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && tsc -p tsconfig.build.json",
"lint": "lint",
"lint-and-fix": "lint-and-fix"
},
"dependencies": {
"@storybook/global": "~5.0.0",
"@storybook/icons": "~1.2.12",
"fast-deep-equal": "~3.1.3"
},
"devDependencies": {
"@types/react": "~18.3.27",
"eslint": "~9.39.2",
"lint-all": "workspace:~",
"prettier": "~3.6.2",
"rimraf": "~6.0.1",
"typescript": "~5.9.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}