{
  "name": "indeksd",
  "version": "0.0.17",
  "description": "A DSL for defining IndexedDB schemas that compile into a type safe database client.",
  "main": "./dist/main/index.js",
  "types": "./dist/main/index.d.ts",
  "bin": {
    "indeksd": "./dist/main/bin/index.js"
  },
  "files": [
    "dist/main"
  ],
  "keywords": [
    "TypeScript",
    "IndexedDB",
    "database",
    "schema",
    "DSL"
  ],
  "scripts": {
    "format": "prettier --write 'src/**/*.ts'",
    "clean": "rimraf dist",
    "clean:all": "npm run clean -- node_modules",
    "prebuild": "npm run clean && npm run format",
    "build": "tsc",
    "move:fixtures": "rimraf dist/tests/fixtures && cp -r src/tests/fixtures dist/tests/fixtures",
    "pretest": "npm run build && npm run move:fixtures",
    "test": "node ./dist/tests/index.test.js"
  },
  "author": "Kevin Greene",
  "license": "ISC",
  "devDependencies": {
    "@types/glob": "^7.2.0",
    "@types/node": "17.0.17",
    "@typescript-eslint/eslint-plugin": "^5.11.0",
    "@typescript-eslint/parser": "^5.11.0",
    "eslint": "^8.8.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0"
  },
  "dependencies": {
    "@types/fs-extra": "^9.0.13",
    "@types/prettier": "^2.6.0",
    "fs-extra": "^10.0.1",
    "glob": "^7.2.0",
    "prettier": "^2.6.2",
    "typescript": "^4.7.3"
  }
}
