{
  "name": "@xoneorg/hpl-token",
  "version": "1.0.0",
  "author": "HUIONE Maintainers <maintainers@huione.com>",
  "description": "HPL Token JavaScript API",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib",
    "src",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/types/index.d.ts",
  "scripts": {
    "nuke": "shx rm -rf node_modules package-lock.json || true",
    "reinstall": "npm run nuke && npm install",
    "clean": "shx rm -rf lib **/*.tsbuildinfo || true",
    "build": "tsc --build --verbose tsconfig.all.json",
    "postbuild": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
    "watch": "tsc --build --verbose --watch tsconfig.all.json",
    "release": "npm run clean && npm run build",
    "fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
    "lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint --max-warnings 0 .",
    "lint:fix": "npm run fmt && eslint --fix .",
    "example": "node --experimental-specifier-resolution=node --loader ts-node/esm examples/createMintAndTransferTokens.ts",
    "test": "npm run test:unit && npm run test:e2e-built",
    "test:unit": "mocha test/unit",
    "test:e2e-built": "start-server-and-test 'put-test-validator --bpf-program HuiToken11111111111111111111111111111111111 ../../target/deploy/hpl_token.so --reset --quiet' http://localhost:8899/health 'mocha test/e2e/update.test.ts'",
    "deploy": "npm run deploy:docs",
    "docs": "shx rm -rf docs && typedoc && shx cp .nojekyll docs/",
    "deploy:docs": "npm run docs && gh-pages --dist token/js --dotfiles"
  },
  "dependencies": {
    "@xoneorg/buffer-layout": "^1.0.0",
    "@xoneorg/buffer-layout-utils": "^1.0.0",
    "@xoneorg/web3.js": "^1.0.1"
  },
  "devDependencies": {
    "@types/chai": "^4.3.3",
    "@types/chai-as-promised": "^7.1.4",
    "@types/mocha": "^9.1.0",
    "@types/node": "^18.7.9",
    "@types/node-fetch": "^2.6.2",
    "@types/prettier": "^2.7.0",
    "@typescript-eslint/eslint-plugin": "^5.34.0",
    "@typescript-eslint/parser": "^5.34.0",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "eslint": "^8.20.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-require-extensions": "^0.1.1",
    "gh-pages": "^3.2.3",
    "mocha": "^9.1.4",
    "prettier": "^2.7.1",
    "process": "^0.11.10",
    "shx": "^0.3.4",
    "start-server-and-test": "^1.14.0",
    "ts-node": "^10.9.1",
    "tslib": "^2.3.1",
    "typedoc": "^0.23.10",
    "typescript": "^4.7.4"
  }
}
