{
  "name": "@opendataformats/simplestamp",
  "version": "0.3.1",
  "description": "TypeScript Node library for creating simple, compact, portable Open Timestamps attestations.",
  "keywords": [
    "simplestamp",
    "opentimestamps",
    "timestamp",
    "blockchain",
    "bitcoin",
    "attestation"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc && cp -r config dist/config",
    "build:watch": "tsc --watch",
    "proto:gen": "protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=models --ts_proto_opt=esModuleInterop=true,forceLong=number,outputEncodeMethods=true,outputJsonMethods=false,outputClientImpl=false --proto_path=../../protobuf ../../protobuf/simplestamp/v1/*.proto",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --ext .ts --fix",
    "test": "jest",
    "test:watch": "jest --watchAll",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/OpenDataFormats/simplestamp.git"
  },
  "author": {
    "name": "David Arvan",
    "email": "david@opendataformats.org"
  },
  "license": "Unlicense",
  "bugs": {
    "url": "https://github.com/OpenDataFormats/simplestamp/issues"
  },
  "homepage": "https://github.com/OpenDataFormats/simplestamp",
  "dependencies": {
    "@bufbuild/protobuf": "^2.12.0"
  },
  "devDependencies": {
    "@types/jest": "^29.0.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^8.56.0",
    "jest": "^29.0.0",
    "ts-jest": "^29.0.0",
    "ts-proto": "^2.0.0",
    "typescript": "^5.0.0"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "verbose": true,
    "collectCoverage": true,
    "coverageDirectory": "../../../docs/coverage-ts",
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/models/",
      "/dist/"
    ],
    "testMatch": [
      "**/lib/**/*.test.ts"
    ]
  }
}
