{
  "name": "@aptly-as/sdk-app",
  "version": "1.2.2",
  "description": "Aptly app SDK library for app communication and frontend development",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.js",
  "files": [
    "certificates",
    "dist"
  ],
  "author": "Emil Andreas Olsen <emil@aptly.as>",
  "license": "ISC",
  "devDependencies": {
    "@aptly-as/types": "^3.7.4",
    "@types/jsonwebtoken": "^9.0.7",
    "@types/node": "^20.17.23",
    "husky": "^9.1.6",
    "lint-staged": "^15.2.10",
    "prettier": "^3.5.3",
    "typescript": "^5.8.2"
  },
  "dependencies": {
    "jsonwebtoken": "^9.0.2"
  },
  "peerDependencies": {
    "@aptly-as/types": "*"
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown"
  },
  "scripts": {
    "dev": "tsc --watch",
    "build": "tsc",
    "prepublish": "pnpm run build",
    "postversion": "git push && git push --tags"
  }
}