{
  "name": "avm1-types",
  "version": "0.14.0",
  "description": "Types for the Flash ActionScript Virtual Machine (AVM1)",
  "licenses": [
    {
      "type": "MIT",
      "url": "https://spdx.org/licenses/MIT"
    },
    {
      "type": "Apache-2.0",
      "url": "https://spdx.org/licenses/Apache-2.0"
    }
  ],
  "keywords": [
    "swf",
    "ast",
    "avm1"
  ],
  "homepage": "https://github.com/open-flash/avm1-types",
  "repository": {
    "type": "git",
    "url": "git@github.com:open-flash/avm1-types.git"
  },
  "scripts": {
    "clean": "rimraf \"./@(lib|main|test)\"",
    "lint": "eslint \"./src/**/*.mts\"",
    "format": "eslint --fix \"./src/**/*.mts\"",
    "build": "tsc --build src/lib/tsconfig.json",
    "prepack": "yarn run build",
    "test:build": "tsc --build src/test/tsconfig.json",
    "test": "yarn run test:build && c8 mocha \"test/**/*.spec.mjs\"",
    "main:build": "tsc --build src/main/tsconfig.json",
    "start": "yarn run main:build && node ./main/main.mjs"
  },
  "engines": {
    "node": ">=14.13.1"
  },
  "packageManager": "yarn@4.0.0-rc.10",
  "dependencies": {
    "incident": "^3.2.1",
    "kryo": "^0.14.0",
    "semantic-types": "^0.1.1",
    "ts-tagged": "^1.0.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.1",
    "@types/mocha": "^9.1.1",
    "@types/node": "^17.0.31",
    "@typescript-eslint/eslint-plugin": "^5.23.0",
    "@typescript-eslint/parser": "^5.23.0",
    "c8": "^7.11.2",
    "chai": "^4.3.6",
    "eslint": "^8.15.0",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "furi": "^2.0.0",
    "kryo-json": "^0.14.0",
    "mocha": "^10.0.0",
    "rimraf": "^3.0.2",
    "typescript": "^4.7.4"
  },
  "type": "module",
  "exports": {
    "./*": "./lib/*.mjs"
  },
  "files": [
    "./lib/**/*.(mjs|map|mts)",
    "./src/lib/**/*.mts"
  ],
  "c8": {
    "reportDir": "./coverage",
    "reporter": [
      "lcov"
    ],
    "include": [
      "lib/**/*"
    ]
  }
}