{
    "name": "@ffort_233/state-stack",
    "version": "0.1.0",
    "description": "A stack + state machine fusion — handlers peek the stack top, switchStatus drives stack operations, and all side effects are expressed as fixed-form stack primitives (push/pop/run)",
    "type": "module",
    "main": "./index.js",
    "types": "./index.d.ts",
    "exports": {
        ".": {
            "import": "./index.js",
            "types": "./index.d.ts"
        }
    },
    "scripts": {
        "build": "tsc",
        "test": "node --test dist/test/*.test.js"
    },
    "keywords": [
        "state-machine",
        "state-stack",
        "finite-state-machine",
        "workflow-engine",
        "fsm",
        "stack-machine"
    ],
    "license": "Apache-2.0",
    "devDependencies": {
        "@types/node": "^26.1.1",
        "typescript": "^7.0.2"
    }
}
