2020-08-04 16:22:31 +02:00
|
|
|
{
|
|
|
|
"name": "react-component-form",
|
2021-06-17 19:32:56 +02:00
|
|
|
"version": "0.0.0-development",
|
2022-02-19 17:18:13 +01:00
|
|
|
"public": true,
|
2022-04-06 23:52:50 +02:00
|
|
|
"type": "module",
|
2020-08-04 16:22:31 +02:00
|
|
|
"description": "Manage React Forms with ease.",
|
2020-08-04 16:49:14 +02:00
|
|
|
"author": "Divlo <contact@divlo.fr>",
|
2020-08-04 16:22:31 +02:00
|
|
|
"license": "MIT",
|
2020-08-04 16:49:14 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-02-19 17:18:13 +01:00
|
|
|
"url": "https://github.com/Divlo/react-component-form.git"
|
2020-08-04 16:49:14 +02:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"react-form",
|
|
|
|
"react-component-form"
|
|
|
|
],
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Divlo/react-component-form/issues"
|
|
|
|
},
|
2022-08-26 22:48:52 +02:00
|
|
|
"homepage": "https://react-component-form.vercel.app/",
|
2021-06-17 18:48:19 +02:00
|
|
|
"main": "dist/index.js",
|
2022-04-06 23:52:50 +02:00
|
|
|
"types": "dist/index.d.ts",
|
2021-06-17 18:48:19 +02:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2020-08-04 16:22:31 +02:00
|
|
|
"scripts": {
|
2022-04-06 23:52:50 +02:00
|
|
|
"build": "tsup",
|
|
|
|
"test": "jest",
|
2021-06-17 18:48:19 +02:00
|
|
|
"lint:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-08-25 22:51:40 +02:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2023-04-02 21:52:34 +02:00
|
|
|
"lint:eslint": "eslint \".\"",
|
2022-04-06 23:52:50 +02:00
|
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
2021-06-17 19:32:56 +02:00
|
|
|
"release": "semantic-release"
|
2020-08-04 16:22:31 +02:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-04-02 21:52:34 +02:00
|
|
|
"react": ">=18.2.0"
|
2020-10-26 02:56:36 +01:00
|
|
|
},
|
2022-08-25 23:24:40 +02:00
|
|
|
"dependencies": {
|
2023-04-02 21:52:34 +02:00
|
|
|
"@sinclair/typebox": "0.26.8",
|
2023-01-10 21:23:32 +01:00
|
|
|
"ajv": "8.12.0",
|
2022-08-25 23:24:40 +02:00
|
|
|
"ajv-formats": "2.1.1"
|
|
|
|
},
|
2021-06-17 18:48:19 +02:00
|
|
|
"devDependencies": {
|
2023-04-02 21:52:34 +02:00
|
|
|
"@commitlint/cli": "17.5.1",
|
|
|
|
"@commitlint/config-conventional": "17.4.4",
|
|
|
|
"@testing-library/react": "14.0.0",
|
|
|
|
"@tsconfig/strictest": "2.0.0",
|
|
|
|
"@types/jest": "29.5.0",
|
|
|
|
"@types/react": "18.0.32",
|
|
|
|
"@types/react-dom": "18.0.11",
|
|
|
|
"@typescript-eslint/eslint-plugin": "5.57.0",
|
|
|
|
"@typescript-eslint/parser": "5.57.0",
|
|
|
|
"editorconfig-checker": "5.0.1",
|
|
|
|
"esbuild": "0.17.15",
|
2022-08-25 23:24:40 +02:00
|
|
|
"esbuild-jest": "0.5.0",
|
2023-04-02 21:52:34 +02:00
|
|
|
"eslint": "8.37.0",
|
|
|
|
"eslint-config-conventions": "8.0.0",
|
|
|
|
"eslint-config-prettier": "8.8.0",
|
|
|
|
"eslint-plugin-import": "2.27.5",
|
2022-08-25 22:51:40 +02:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2022-11-08 11:28:57 +01:00
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-04-02 21:52:34 +02:00
|
|
|
"eslint-plugin-unicorn": "46.0.0",
|
|
|
|
"jest": "29.5.0",
|
|
|
|
"jest-environment-jsdom": "29.5.0",
|
2023-01-10 21:23:32 +01:00
|
|
|
"markdownlint-cli2": "0.6.0",
|
2023-04-02 21:52:34 +02:00
|
|
|
"markdownlint-rule-relative-links": "1.1.2",
|
|
|
|
"prettier": "2.8.7",
|
2022-08-25 22:51:40 +02:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2023-04-02 21:52:34 +02:00
|
|
|
"semantic-release": "21.0.1",
|
|
|
|
"tsup": "6.7.0",
|
|
|
|
"typescript": "5.0.3"
|
2020-08-04 16:49:14 +02:00
|
|
|
}
|
2020-08-04 16:22:31 +02:00
|
|
|
}
|