-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 KB
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
55
56
57
{
"name": "react-form-reducer",
"version": "1.0.7",
"description": "A utility of React hooks and contexts to provide simpler form field management, in addition to support of frontend validation and backend validation error processing",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"scripts": {
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --no-sourcemap --format esm,cjs,modern",
"start": "microbundle watch ---jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --no-sourcemap --format esm,cjs,modern",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"lint:fix": "eslint --fix src/**/*.ts src/**/*.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"form",
"reducer",
"validatorjs",
"context"
],
"author": "Majid Kuhail <majid@sweetscript.com>",
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"microbundle": "^0.15.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"typescript": "^4.9.5"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/sweetscript/react-form-reducer.git"
},
"bugs": {
"url": "https://github.com/sweetscript/react-form-reducer/issues",
"email": "majid@sweetscript.com"
}
}