-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "@tkwant/react-steps",
"version": "1.0.0",
"keywords": [
"react",
"mobile-stepper",
"multistep",
"wizard",
"react",
"stepper",
"react",
"step",
"steps",
"mobile-friendly"
],
"author": "Tobias Kwant",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tkwant/react-steps"
},
"main": "./dist/Stepper.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsup src/Stepper/Stepper.tsx --legacy-output --dts --sourcemap --minify",
"build-demo": "tsc && vite build",
"serve": "vite preview"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"react-router-dom": ">=5.2.1"
},
"devDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.2.1",
"tailwindcss": "^2.2.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@vitejs/plugin-react-refresh": "^1.3.1",
"autoprefixer": "^10.3.7",
"postcss": "^8.3.6",
"tsup": "^5.4.0",
"typescript": "^4.3.2",
"vite": "^2.5.1",
"vite-plugin-dts": "^0.8.3"
}
}