{
  "name": "jspp-library",
  "version": "1.1.2",
  "description": "providing additional features for every JavaScript ecosystem with zero-cost principle.",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/cjs/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./*": {
      "types": "./dist/cjs/*.d.ts",
      "import": "./dist/esm/*.js",
      "require": "./dist/cjs/*.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "clean:test": "rm -rf dist/test",
    "build": "npm run clean && npx tsc -p tsconfig.cjs.json && npx tsc -p tsconfig.esm.json",
    "build:watch": "npx tsc -p tsconfig.cjs.json --watch & npx tsc -p tsconfig.esm.json --watch",
    "build:test": "npx tsc -p tsconfig.test.json",
    "pretest": "npm run build:test",
    "test": "node dist/test/test/printf.test.js",
    "posttest": "npm run clean:test",
    "dev": "npm run build:watch",
    "format": "prettier --write .",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uocazizah/jspp-library.git"
  },
  "keywords": [
    "library",
    "js",
    "ts",
    "commonJS",
    "cjs",
    "esm",
    "older-node"
  ],
  "author": "Uoc Azizah <uoctamika.codeberg.org@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/uocazizah/jspp-library/issues"
  },
  "homepage": "https://github.com/uocazizah/jspp-library#readme",
  "devDependencies": {
    "@types/node": "^26.1.1",
    "typescript": "^5.9.2"
  },
  "engines": {
    "node": ">=9"
  },
  "publishConfig": {
    "access": "public"
  }
}
