-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.38 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
{
"name": "@codegouvfr/rjsf-dsfr",
"version": "0.1.9",
"description": "react-jsonschema-form with the DSFR",
"repository": "[email protected]:codegouvfr/rjsf-dsfr.git",
"author": "Emile Rolley <[email protected]>",
"keywords": [
"DSFR",
"react-jsonschema-form",
"react",
"jsonschema",
"form",
"form-builder"
],
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "tsc --noEmit --strict",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/react": "^18.3.3",
"prettier": "^3.3.2",
"react": "^18.3.1",
"tsc": "^2.0.4",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"tsup": {
"entry": [
"./src/index.tsx"
],
"format": [
"cjs",
"esm"
],
"sourcemap": true,
"clean": true,
"dts": true
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.9.22",
"@rjsf/core": "^5.18.4",
"@rjsf/utils": "^5.18.4",
"@rjsf/validator-ajv8": "^5.18.4"
},
"peerDependencies": {
"react": "^18.3.3"
},
"publishConfig": {
"access": "public"
}
}