{
  "name": "rsformat",
  "version": "1.4.0",
  "description": "Formatting/printing library for JavaScript that takes after rust's string formatting ",
  "files": [
    "lib",
    "README.md",
    "docs.md"
  ],
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    },
    "./*": {
      "types": "./lib/*.d.ts",
      "default": "./lib/*.js"
    }
  },
  "keywords": [
    "fmt",
    "format",
    "strings",
    "print",
    "println",
    "printf",
    "console",
    "log",
    "console.log"
  ],
  "author": "Alfio (https://github.com/p2js)",
  "license": "ISC",
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^22.8.6",
    "jest": "^30.2.0",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "pnpm exec tsc",
    "build:test": "pnpm exec tsc -p tsconfig.test.json",
    "pretest": "pnpm build && pnpm build:test",
    "test": "pnpm exec jest test-build",
    "posttest": "rm -r test-build"
  }
}