{
  "name": "meld-spec",
  "version": "0.4.2",
  "description": "Specification for the Meld scripting language",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:esm && npm run build:cjs",
    "build:esm": "tsc -p tsconfig.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "test": "jest",
    "clean": "rm -rf dist",
    "prepare": "npm run build"
  },
  "author": "Adam Avenir",
  "license": "TBD",
  "dependencies": {
    "typescript": "^5.3.3"
  },
  "keywords": [
    "meld",
    "specification",
    "typescript"
  ],
  "bugs": {
    "url": "https://github.com/adamavenir/meld-spec/issues"
  },
  "homepage": "https://github.com/adamavenir/meld-spec#readme",
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1"
  }
}
