{
  "name": "strictly-formed",
  "version": "0.3.3",
  "description": "statically typed forms for typescript",
  "source": "src/index.ts",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "scripts": {
    "test": "jest",
    "lint": "eslint \"src/**/**.{ts,tsx}\"",
    "check": "tsc --noEmit",
    "validate": "npm run lint && npm run check && npm run test",
    "format": "prettier \"src/**/**.{ts,tsx}\" --write",
    "clean": "rm -rf ./dist && rm -rf .parcel-cache",
    "dev": "npm run clean && parcel 'example/index.html'",
    "build": "npm run clean && parcel build",
    "deploy:prerelease": "npm run validate && npm version prerelease && npm run build && npm publish && git push --follow-tags",
    "deploy:patch": "npm run validate && npm version patch && npm run build && npm publish && git push --follow-tags",
    "deploy:minor": "npm run validate && npm version minor && npm run build && npm publish && git push --follow-tags",
    "deploy:major": "npm run validate && npm version major && npm run build && npm publish && git push --follow-tags"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/sayari-analytics/strictly-formed.git"
  },
  "keywords": [
    "typescript",
    "react",
    "form"
  ],
  "peerDependencies": {
    "react": ">=17.0",
    "react-dom": ">=17.0",
    "react-redux": "^7.2.8",
    "redux": "^4.1.2"
  },
  "author": "James Conkling <james.lane.conkling@gmail.com>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/sayari-analytics/strictly-formed/issues"
  },
  "homepage": "https://github.com/sayari-analytics/strictly-formed#readme",
  "devDependencies": {
    "@parcel/packager-ts": "^2.4.1",
    "@parcel/transformer-typescript-types": "^2.4.1",
    "@redux-devtools/extension": "^3.2.2",
    "@testing-library/react": "^12.1.5",
    "@types/jest": "^27.4.1",
    "@types/ramda": "^0.28.1",
    "@types/react": "^17.0.40",
    "@types/react-dom": "^18.0.0",
    "@types/react-redux": "^7.1.23",
    "@types/styled-components": "^5.1.25",
    "@typescript-eslint/eslint-plugin": "^5.15.0",
    "@typescript-eslint/parser": "^5.15.0",
    "eslint": "^8.11.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-react": "^7.29.4",
    "eslint-plugin-react-hooks": "^4.3.0",
    "jest": "^27.5.1",
    "parcel": "^2.4.1",
    "prettier": "^2.6.0",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-redux": "^7.2.8",
    "redux": "^4.1.2",
    "redux-observable": "^2.0.0",
    "rxjs": "^7.5.5",
    "styled-components": "^5.3.5",
    "ts-jest": "^27.1.4",
    "typescript": "^4.6.2"
  }
}
