epaew/react-liff

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "react-liff",
  "version": "2.1.0",
  "private": false,
  "description": "A react context provider for LIFF (LINE Front-end Framework)",
  "keywords": [
    "react",
    "react-component",
    "liff",
    "line"
  ],
  "homepage": "https://github.com/epaew/react-liff",
  "repository": "git@github.com:epaew/react-liff",
  "license": "MIT",
  "author": "Ryo Maeda <epaew.333@gmail.com>",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/*"
  ],
  "scripts": {
    "build": "tsc",
    "clean": "rimraf dist/*",
    "fix": "biome check --apply .",
    "lint": "biome check .",
    "lint:ci": "biome ci .",
    "prepack": "npm-run-all lint test clean build",
    "test": "jest",
    "test:ci": "jest --ci --coverage",
    "test:coverage": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "devDependencies": {
    "@biomejs/biome": "1.4.1",
    "@line/liff": ">=2.19.1 <3.0.0",
    "@testing-library/react": "^14.1.2",
    "@types/jest": "^29.2.3",
    "@types/prop-types": "^15.7.3",
    "@types/react": "^18.0.25",
    "jest": "^29.3.1",
    "jest-environment-jsdom": "^29.3.1",
    "npm-run-all": "^4.1.5",
    "prop-types": "^15.7.2",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.0.3",
    "typescript": "^5.3.2"
  },
  "peerDependencies": {
    "@line/liff": ">=2.19.1 <3.0.0",
    "prop-types": "*",
    "react": ">=18.0.0 <19.0.0",
    "react-dom": ">=18.0.0 <19.0.0"
  },
  "peerDependenciesMeta": {
    "@line/liff": {
      "optional": true
    }
  }
}