{
  "name": "creb-js",
  "version": "1.5.0",
  "description": "Chemical Reaction Equation Balancer - JavaScript Library",
  "type": "module",
  "main": "dist/index.esm.js",
  "module": "dist/index.esm.js",
  "browser": "dist/index.umd.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "browser": "./dist/index.umd.js"
    }
  },
  "scripts": {
    "build": "npm run build:creb && npm run build:pubchem",
    "build:creb": "rollup -c",
    "build:pubchem": "cd packages/pubchem-js && npm run build",
    "test": "jest && cd packages/pubchem-js && npm test",
    "test:creb": "jest",
    "test:pubchem": "cd packages/pubchem-js && npm test",
    "dev": "rollup -c -w",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "chemistry",
    "chemical-equations",
    "equation-balancer",
    "stoichiometry",
    "chemical-reactions"
  ],
  "author": {
    "name": "Loganathane Virassamy",
    "url": "https://www.linkedin.com/in/loganathane-virassamy/"
  },
  "license": "AGPL-3.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vloganathane/CREB.git"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/jest": "^29.5.12",
    "jest": "^29.7.0",
    "rollup": "^4.12.0",
    "ts-jest": "^29.1.2",
    "tslib": "^2.8.1",
    "typescript": "^5.3.3"
  }
}
