-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "react-switch-selector",
"description": "Tiny switch/toggle component for React️ ⚛",
"version": "2.3.0",
"license": "MIT",
"repository": "https://github.com/GR34SE/react-switch-selector.git",
"author": "https://github.com/GR34SE",
"type": "module",
"source": "src/index.tsx",
"exports": "./dist/index.modern.js",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "yarn clean && microbundle --jsx React.createElement",
"clean": "rimraf ./dist",
"release": "yarn lint && yarn build && release-it",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"storybook:dev": "storybook dev",
"storybook:build": "storybook build"
},
"peerDependencies": {
"goober": "^2.1.14",
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"dependencies": {
"goober": "2.1.14"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@storybook/addon-actions": "8.2.7",
"@storybook/addon-essentials": "8.2.7",
"@storybook/addon-links": "8.2.7",
"@storybook/addon-webpack5-compiler-swc": "1.0.5",
"@storybook/react": "8.2.7",
"@storybook/react-webpack5": "8.2.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"babel-loader": "8.3.0",
"csstype": "3.1.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"microbundle": "0.15.1",
"prettier": "3.3.3",
"release-it": "17.6.0",
"rimraf": "6.0.1",
"storybook": "^8.2.7",
"typescript": "5.5.4"
},
"keywords": [
"react",
"switch",
"toggle",
"toggler",
"select",
"selector",
"input",
"radio"
]
}