-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.96 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
55
56
57
58
59
60
61
{
"name": "@bhch/react-json-form",
"version": "2.14.3",
"description": "Create forms using JSON Schema",
"publishConfig": {
"access": "public"
},
"type": "module",
"source": "./src/index.js",
"exports": {
"require": "./dist/react-json-form.cjs",
"default": "./dist/react-json-form.modern.js"
},
"main": "./dist/react-json-form.cjs",
"module": "./dist/react-json-form.module.js",
"unpkg": "./dist/react-json-form.js",
"scripts": {
"build": "npm run build:web && npm run build:node",
"build:web": "microbundle --format umd --jsx React.createElement --sourcemap false --globals react=React,react-dom=ReactDOM,react-modal=ReactModal",
"build:node": "microbundle --format cjs,esm,modern --jsx React.createElement --sourcemap false --target node",
"dev:web": "microbundle watch --format umd --no-compress --jsx React.createElement --sourcemap false --globals react=React,react-dom=ReactDOM,react-modal=ReactModal",
"dev:node": "microbundle watch --format modern --no-compress --jsx React.createElement --sourcemap false --taget node",
"test": "jest",
"lint": "eslint src"
},
"files": [
"./src",
"./dist"
],
"keywords": [
"json-form",
"jsonform",
"json-schema-form",
"jsonschemaform",
"react",
"react-component",
"react-jsons-form",
"react-jsonschema-form"
],
"author": "Bharat Chauhan",
"license": "BSD-3-Clause",
"homepage": "https://github.com/bhch/react-json-form",
"bugs": "https://github.com/bhch/react-json-form/issues",
"repository": {
"type": "git",
"url": "https://github.com/bhch/react-json-form.git"
},
"funding": "https://github.com/sponsors/bhch/",
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"jest": "^29.0.2",
"microbundle": "^0.15.0"
},
"peerDependencies": {
"react": "^17.0.2 || ^18",
"react-dom": "^17.0.2 || ^18",
"react-modal": "^3.15.1"
}
}