-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "react-multistep",
"version": "6.0.0-alpha",
"description": "Responsive ReactJS multistep form component",
"main": "dist/index.js",
"files": [
"build/*.d.ts",
"dist/index.js",
"src/index.js",
"src/MultiStep.jsx"
],
"types": "build/index.d.ts",
"license": "MIT",
"author": {
"name": "@djidja8",
"email": "[email protected]",
"url": "https://github.com/srdjan"
},
"keywords": [
"react, reactjs, responsive, component"
],
"repository": {
"type": "git",
"url": "https://github.com/srdjan/react-multistep"
},
"homepage": "https://github.com/srdjan/react-multistep",
"bugs": {
"url": "https://github.com/srdjan/react-multistep/issues"
},
"dependencies": {
},
"devDependencies": {
"@types/react": "18.3.18",
"esbuild": "0.19.0",
"typescript": "5.7.3"
},
"peerDependencies": {
"react": "18.3.1"
},
"scripts": {
"build": "tsc",
"bundle": "esbuild ./build/index.js \"--define:process.env.NODE_ENV='production'\" --external:react --bundle --format=cjs --loader:.js=jsx --outdir=dist",
"publish": "npm publish ./"
}
}