{
  "name": "@agikit-slim/core",
  "version": "1.2.0",
  "description": "Core library for AGI game scripting, compilation, and resource extraction",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "license": "SEE LICENSE IN LICENSE",
  "author": "Sam Davidoff <sam@mfbtech.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/sam-mfb/agikit-slim.git",
    "directory": "packages/core"
  },
  "keywords": [
    "agi",
    "adventure-game-interpreter",
    "sierra",
    "game-development",
    "retro-gaming",
    "logic-scripting"
  ],
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "assert-never": "^1.2.1",
    "filesize": "^8.0.7",
    "iconv-lite": "^0.6.3",
    "lodash": "^4.17.21",
    "ts-is-present": "^1.2.2"
  },
  "devDependencies": {
    "@types/iconv-lite": "^0.0.1",
    "@types/lodash": "^4.14.200",
    "@types/node": "^20.0.0",
    "@types/pegjs": "^0.10.3",
    "@vitest/coverage-v8": "^1.0.0",
    "pegjs": "^0.10.0",
    "ts-node": "^10.9.0",
    "ts-pegjs": "^0.3.1",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0"
  },
  "scripts": {
    "build": "npm run generate-parsers && tsc",
    "generate-parsers": "ts-node src/Scripting/generateParsers.ts",
    "clean": "rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}