{
  "name": "vue-async-computed",
  "version": "4.0.1",
  "description": "Async computed properties for Vue",
  "main": "dist/vue-async-computed.js",
  "module": "dist/vue-async-computed.esm.js",
  "types": "types/index.d.ts",
  "files": [
    "bin/",
    "dist/",
    "types/"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "lint": "eslint src test",
    "watch": "watch 'npm run build' src test",
    "test": "vitest run",
    "prebuild": "npm run lint -s",
    "build": "npm run buildOnly",
    "buildOnly": "npm run clean -s && mkdirp dist && npm run rollup -s && npm run babel -s",
    "rollup-esm": "rollup src/index.js --output.format esm --name AsyncComputed --output.file dist/vue-async-computed.esm.esnext.js",
    "rollup-umd": "rollup src/index.js --output.format umd --name AsyncComputed --output.file dist/vue-async-computed.esnext.js",
    "rollup": "npm run rollup-umd -s && npm run rollup-esm -s",
    "babel-umd": "babel --optional runtime dist/vue-async-computed.esnext.js --out-file dist/vue-async-computed.js",
    "babel-esm": "babel --optional runtime dist/vue-async-computed.esm.esnext.js --out-file dist/vue-async-computed.esm.js",
    "babel": "npm run babel-umd -s && npm run babel-esm -s",
    "postbuild": "npm run test -s",
    "prepublishOnly": "npm run build -s",
    "version": "node scripts/version.js",
    "patch": "npm version patch && npm publish",
    "minor": "npm version minor && npm publish",
    "major": "npm version major && npm publish",
    "postpublish": "git push origin master --follow-tags",
    "toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/foxbenjaminfox/vue-async-computed.git"
  },
  "keywords": [
    "vue",
    "data",
    "async",
    "computed",
    "computed data"
  ],
  "author": "Benjamin Fox <foxbenjaminfox@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/foxbenjaminfox/vue-async-computed/issues"
  },
  "homepage": "https://github.com/foxbenjaminfox/vue-async-computed#readme",
  "peerDependencies": {
    "vue": "~3"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.3",
    "babel-preset-env": "^1.7.0",
    "doctoc": "^1.4.0",
    "eslint": "^8.54.0",
    "eslint-config-standard": "^17.1.0",
    "eslint-plugin-import": "^2.29.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^6.1.1",
    "happy-dom": "^12.10.3",
    "mkdirp": "^3.0.1",
    "rimraf": "^5.0.5",
    "rollup": "^2.26.3",
    "vitest": "^0.34.6",
    "vue": "^3.3.7",
    "watch": "^1.0.2"
  }
}
