-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 843 Bytes
/
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
{
"name": "react-promenade",
"description": "React components for crafting multi-step user flows",
"homepage": "https://github.com/gdbroman/react-promenade",
"author": {
"name": "gdbroman",
"url": "https://github.com/gdbroman"
},
"license": "MIT",
"version": "0.8.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc"
},
"peerDependencies": {
"react": "^18"
},
"files": [
"dist"
],
"keywords": [
"react",
"typescript",
"multi-step",
"form",
"user-flow"
],
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/react": "^18.3.4",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}