{
    "name": "@fmlang/fml-to-schema",
    "version": "0.0.2",
    "type": "module",
    "main": "lib/index.js",
    "types": "lib/types/index.d.ts",
    "scripts": {
        "dev": "bun run index.ts",
        "test": "bun run test.ts FORM0001.fml",
        "build": "bun build index.ts --target bun --outdir lib",
        "generate:types": "bun run build && tsc --declaration --emitDeclarationOnly --outDir lib/types index.ts",
        "publish": "bun publish --access public"
    },
    "devDependencies": {
        "@types/bun": "latest"
    },
    "peerDependencies": {
        "typescript": "^5"
    },
    "dependencies": {
        "@fmlang/parser": "^0.0.3",
        "@fmlang/tokenizer": "^0.0.13",
        "jsonv-ts": "^0.1.0"
    },
    "directories": {
        "lib": "lib"
    },
    "files": [
        "lib/",
        "README.md"
    ],
    "author": "Cassandra Thompson",
    "license": "MIT",
    "keywords": [
        "fml",
        "to-schema",
        "forms",
        "markup",
        "language"
    ],
    "description": "Convert Forms Markup Language (FML) to jsonv-ts (JSON Schema)",
    "repository": {
        "type": "git",
        "url": ""
    }
}
