-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "react-toggle-slider",
"version": "0.4.2",
"author": {
"email": "[email protected]",
"name": "Mark Vadeika"
},
"repository": {
"type": "git",
"url": "https://github.com/VirtualParticle/react-toggle-slider.git"
},
"homepage": "https://github.com/VirtualParticle/react-toggle-slider",
"description": "A highly customizable React toggle slider component.",
"keywords": [
"react",
"slider",
"toggle",
"switch",
"typescript"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"license": "MIT",
"files": [
"./lib"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"dev": "tsc-watch",
"lint": "yarn eslint ."
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@types/eslint__js": "8.42.3",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"eslint": "9.14.0",
"example": "file:example",
"typescript": "^5.6.3",
"typescript-eslint": "8.14.0"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"color-interpolate": "^1.0.5"
}
}