{
  "name": "@4bitlabs/dct",
  "version": "1.0.2",
  "description": "Discrete cosine transform algorithms in js and ts",
  "keywords": [
    "dct",
    "idct"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "homepage": "https://github.com/32bitkid/4bitlabs.dct#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/32bitkid/4bitlabs.dct"
  },
  "bugs": {
    "url": "https://github.com/32bitkid/4bitlabs.dct/issues"
  },
  "exports": {
    ".": "./dist/index.js",
    "./fast-dct-8": "./dist/fast-dct-8.js",
    "./dct-n": "./dist/dct-n.js"
  },
  "files": [
    "./dist/**/*"
  ],
  "scripts": {
    "lint": "eslint .",
    "format:fix": "prettier -w .",
    "clean": "tsc --build --clean",
    "clean:wipe": "rimraf ./dist",
    "build": "tsc --build",
    "test": "jest src/",
    "version": "conventional-changelog -p eslint -i CHANGELOG.md -s && git add CHANGELOG.md",
    "prepack": "npm run build"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@typescript-eslint/eslint-plugin": "^7.16.1",
    "@typescript-eslint/parser": "^7.16.1",
    "conventional-changelog-cli": "^5.0.0",
    "conventional-changelog-eslint": "^6.0.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-deprecation": "^3.0.0",
    "eslint-plugin-import": "^2.29.1",
    "jest": "^29.7.0",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.3",
    "typescript": "^5.5.3"
  },
  "author": "J. Holmes <j@holmes.codes>",
  "license": "ISC"
}
