-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.23 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": "@crispice/save-progress",
"version": "2.0.0",
"description": "A React hook and Formik component to save and manage form progress, with support for custom save and clear functions, and TypeScript types.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"author": {
"name": "MURAGEH",
"url": "https://github.com/murageh"
},
"homepage": "https://github.com/murageh/save-progress#readme",
"repository": {
"type": "git",
"url": "https://github.com/murageh/save-progress.git"
},
"keywords": [
"react-hooks",
"formik",
"save-progress",
"react",
"typescript",
"component",
"form",
"localStorage",
"sessionStorage"
],
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"dependencies": {
"typescript": "^4.9.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"formik": "^2.2.9",
"rollup": "4.22.4",
"rollup-plugin-dts": "^5.0.0",
"tslib": "^2.4.1"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
"react": ">=17.0.0"
}
}