-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "rjsf-native",
"version": "1.0.13",
"main": "dist/index.js",
"module": "dist/rjsf-native.esm.js",
"typings": "dist/index.d.ts",
"description": "React Native theme, fields and widgets for react-jsonschema-form",
"license": "MIT",
"files": ["dist"],
"scripts": {
"start": "tsdx watch",
"build": "rimraf dist && tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"prepublish": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"peerDependencies": {
"@react-native-community/slider": "*",
"@rjsf/core": "^2.0.0",
"react": ">=16",
"react-native": ">=0.60.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@react-native-community/slider": "^3.0.0",
"@rjsf/core": "^2.2.0",
"@rollup/plugin-image": "^2.0.5",
"@types/json-schema": "^7.0.5",
"@types/react": "^16.9.41",
"@types/react-native": "^0.62.16",
"husky": "^4.2.5",
"rimraf": "^3.0.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
},
"keywords": [
"react-native",
"react-jsonschema-form",
"jsonschema",
"json-schema",
"json",
"schema",
"form",
"react",
"rjsf-native"
]
}