{
  "name": "@kaokei/<%= appName %>",
  "version": "1.0.0",
  "description": "<%= appName %> package description",
  "main": "./dist/index.cjs.runtime.min.js",
  "module": "./dist/index.esm.runtime.min.js",
  "types": "./dist/src/index.d.ts",
  "unpkg": "dist/index.iife.min.js",
  "jsdelivr": "dist/index.iife.min.js",
  "files": [
    "dist/**/*"
  ],
  "browserVariableName": "CustomGlobalNamespace",
  "sideEffects": false,
  "homepage": "https://github.com/kaokei/<%= appName %>",
  "author": "kaokei",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kaokei/<%= appName %>/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kaokei/<%= appName %>.git"
  },
  "keywords": [
    "keyword1",
    "keyword2",
    "keyword3",
    "keyword4",
    "keyword5"
  ],
  "scripts": {
    "check": "tsc -p tsconfig.app.json --noEmit",
    "rp": "rollup -c rollup.config.js",
    "unit": "jest",
    "test": "echo \"Error: no test specified\" && exit 1",
    "lint": "eslint --fix --ext js,ts,jsx,tsx,vue src tests playground",
    "build": "npm run check && npm run rp",
    "clean": "rm -rf dist/*",
    "postpublish": "git push origin --follow-tags",
    "prepublishOnly": "npm run clean && npm run build",
    "release": "standard-version -r",
    "release:first": "standard-version --first-release",
    "coverage": "open ./coverage/lcov-report/index.html",
    "commit": "git-cz",
    "example:start": "npm run start --prefix example",
    "example:build": "npm run build --prefix example"
  },
  "dependencies": {
    "@kaokei/di": "^1.0.9",
    "@vue/reactivity": "^3.1.2"
  },
  "peerDependencies": {
    "react": "^17.0.2",
    "reflect-metadata": "^0.1.13"
  },
  "devDependencies": {
    "@babel/core": "^7.12.3",
    "@babel/plugin-transform-runtime": "^7.14.3",
    "@babel/preset-env": "^7.12.1",
    "@babel/types": "^7.12.0",
    "@commitlint/cli": "^12.1.4",
    "@commitlint/config-conventional": "^12.1.4",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^15.1.0",
    "@rollup/plugin-json": "^4.0.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@rollup/plugin-replace": "^2.4.2",
    "@types/jest": "^26.0.20",
    "@types/node": "^14.10.1",
    "@types/react": "^17.0.14",
    "@typescript-eslint/eslint-plugin": "^4.5.0",
    "@typescript-eslint/parser": "^4.5.0",
    "babel-jest": "^26.6.3",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.2.0",
    "eslint": "^7.11.0",
    "eslint-config-prettier": "^6.13.0",
    "eslint-plugin-prettier": "^3.1.4",
    "fs-extra": "^9.0.1",
    "git-cz": "^4.7.6",
    "jest": "^26.6.3",
    "jest-environment-jsdom": "^26.6.2",
    "lint-staged": "^10.4.2",
    "prettier": "^2.1.2",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-test-renderer": "^17.0.2",
    "reflect-metadata": "^0.1.13",
    "rollup": "^2.45.2",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.4.0",
    "rollup-plugin-polyfill-node": "^0.6.2",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.27.2",
    "standard-version": "^9.0.0",
    "ts-jest": "^26.4.4",
    "tslib": "^2.0.2",
    "typescript": "^4.2.2",
    "yorkie": "^2.0.0"
  },
  "gitHooks": {
    "pre-commit": "lint-staged",
    "commit-msg": "commitlint -e $GIT_PARAMS"
  },
  "lint-staged": {
    "*.{ts,js,tsx,jsx}": [
      "eslint --fix"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
