{
    "name": "harmony-ts",
    "version": "0.14.6",
    "description": "This project is an engine for generating and analyzing four-part textures (and eventually other forms) in the style of Bach and the classical era. Currently, it allows one to pass a series of constraints, such as chord/type/inversion and voice parts, and it will produce the complete texture using the settings provided. It also gives many useful basic music theory functions like intervals and chords though.",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "devDependencies": {
        "@changesets/cli": "^2.27.1",
        "@types/jest": "^29.5.11",
        "@types/node": "^22.13.1",
        "@typescript-eslint/eslint-plugin": "^6.17.0",
        "@typescript-eslint/parser": "^6.17.0",
        "eslint": "^8.56.0",
        "eslint-plugin-unused-imports": "^3.0.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.1.1",
        "ts-node": "^10.9.2",
        "typedoc": "^0.27.7",
        "typescript": "~5.7.3"
    },
    "scripts": {
        "clean": "rm -rf dist tsconfig.tsbuildinfo",
        "tsc": "./node_modules/.bin/tsc",
        "tsc-watch": "./node_modules/.bin/tsc --watch",
        "build": "npm run clean && npm run tsc",
        "clean-docs": "rm -rf docs",
        "docs": "typedoc",
        "test": "jest --config jest.config.json",
        "lint": "eslint --fix src/**/*.ts",
        "madge": "npx madge --circular --extensions ts ./src",
        "prepublishOnly": "npm run madge && npm run lint && npm run build && npm test"
    },
    "author": "Jack Meyer",
    "license": "Apache-2.0",
    "files": [
        "dist/**/*"
    ]
}
