-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathpackage.json
96 lines (96 loc) · 3.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@rjsf/chakra-ui",
"version": "5.24.3",
"description": "Chakra UI theme, fields, and widgets for react-jsonschema-form",
"main": "dist/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build:ts": "tsc -b",
"build:cjs": "esbuild ./src/index.ts --bundle --outfile=dist/index.js --sourcemap --packages=external --format=cjs",
"build:esm": "esbuild ./src/index.ts --bundle --outfile=dist/chakra-ui.esm.js --sourcemap --packages=external --format=esm",
"build:umd": "rollup dist/chakra-ui.esm.js --format=umd --file=dist/chakra-ui.umd.js --name=@rjsf/chakra-ui",
"build": "npm run build:ts && npm run build:cjs && npm run build:esm && npm run build:umd",
"cs-check": "prettier -l \"{src,test}/**/*.ts?(x)\"",
"cs-format": "prettier \"{src,test}/**/*.ts?(x)\" --write",
"lint": "eslint src test",
"precommit": "lint-staged",
"test": "jest",
"test:update": "jest --u",
"test:watch": "jest --watch"
},
"lint-staged": {
"{src,test}/**/*.ts?(x)": [
"eslint --fix"
]
},
"engineStrict": false,
"engines": {
"node": ">=14"
},
"peerDependencies": {
"@chakra-ui/icons": ">=1.1.1",
"@chakra-ui/react": ">=1.7.3 <3.0.0",
"@chakra-ui/system": ">=1.12.1",
"@rjsf/core": "^5.24.x",
"@rjsf/utils": "^5.24.x",
"chakra-react-select": ">=3.3.8",
"framer-motion": ">=5.6.0",
"react": "^16.14.0 || >=17"
},
"publishConfig": {
"access": "public"
},
"author": "Jonathan Blair <jonathanbblair@gmail.com>",
"contributors": [
"jzander <jeremy.zander@gmail.com>",
"Rodrigo Fuentes <rodrigofuentes@users.noreply.github.com>",
"U.M Andrew <me@andrewmiracle.com>",
"Heath Chiavettone <heath.chiavettone@freenome.com"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.9",
"@chakra-ui/system": "^1.12.1",
"@emotion/eslint-plugin": "^11.11.0",
"@emotion/jest": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@rjsf/core": "^5.24.3",
"@rjsf/snapshot-tests": "^5.24.3",
"@rjsf/utils": "^5.24.3",
"@rjsf/validator-ajv8": "^5.24.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/react-test-renderer": "^18.0.7",
"babel-jest": "^29.7.0",
"chakra-react-select": "^3.3.9",
"eslint": "^8.56.0",
"framer-motion": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"typescript": "^4.9.5"
},
"dependencies": {
"react-select": "^5.8.0"
}
}