{
  "name": "@cael-aero/weight-and-balance",
  "description": "Aircraft Weight and Balance calculator",
  "version": "0.3.2",
  "type": "module",
  "license": "BSD-3-Clause",
  "readme": "README.md",
  "author": "Justin Couch",
  "homepage": "https://github.com/CAELAero/weight-and-balance",
  "bugs": {
    "url": "https://github.com/CAELAero/weight-and-balance/issues"
  },
  "keywords": [
    "GFA",
    "airworthiness",
    "typescript",
    "weight and balance"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "engines": {
    "node": ">=20.0.0",
    "npm": ">=11.0.0"
  },
  "files": [
    "lib/**/*",
    "LICENSE",
    "tsconfig.json"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CAELAero/weight-and-balance"
  },
  "publishConfig": {
    "tag": "latest",
    "cache": ".npm",
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc --build tsconfig.lib.json",
    "apps": "tsc --build tsconfig.apps.json",
    "dump": "ts-node --project ./tsconfig.apps.json ./apps/gfa_spreadsheet/gfa_dump.ts -src ./apps/gfa_spreadsheet/data/gfa_worksheet.xlsx",
    "test": "jest --config jest.config.json",
    "coverage": "jest --coverage",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "./node_modules/.bin/eslint src",
    "docs": "typedoc --tsconfig tsconfig.lib.json src",
    "prepublishOnly": "npm test && npm run lint && npm run docs && git add docs/* && git commit -m \"Auto generated docs\" docs && git push",
    "preversion": "npm test && npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "dependencies": {
    "ssf": "https://cdn.sheetjs.com/ssf-0.11.3/ssf-0.11.3.tgz",
    "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
  },
  "devDependencies": {
    "@eslint/compat": "^2.0.1",
    "@eslint/eslintrc": "^3.3.3",
    "@eslint/js": "^9.39.2",
    "@types/jest": "^29.x",
    "@types/node": "^20.x",
    "@typescript-eslint/eslint-plugin": "^8.x",
    "@typescript-eslint/parser": "^8.x",
    "acorn": "^8.x",
    "eslint": "^9.x",
    "eslint-config-prettier": "^9.x",
    "eslint-plugin-import": "^2.25",
    "eslint-plugin-prefer-arrow": "^1.2",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^29.x",
    "minimist": ">=1.2.5",
    "prettier": "^3.x",
    "ts-jest": "^29.x",
    "typedoc": "^0.28",
    "typescript": "^5.4"
  }
}
