UNPKG

@prostojs/wf

Version:

Generic workflow framework

68 lines (67 loc) 1.94 kB
{ "name": "@prostojs/wf", "version": "0.1.1", "description": "Generic workflow framework", "type": "module", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.mts", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "./outlets": { "types": "./dist/outlets/index.d.mts", "import": "./dist/outlets/index.mjs", "require": "./dist/outlets/index.cjs" } }, "files": [ "dist" ], "scripts": { "build": "tsdown", "release": "node ./scripts/release.js", "test": "vitest run", "test:watch": "vitest", "test:cov": "vitest run --coverage", "lint": "oxlint --fix", "format": "oxfmt", "format:check": "oxfmt --check", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md" }, "repository": { "type": "git", "url": "git+https://github.com/prostojs/wf.git" }, "keywords": [ "prostojs", "workflow", "wf" ], "dependencies": { "@prostojs/ftring": "^0.0.4" }, "author": "Artem Maltsev", "license": "MIT", "bugs": { "url": "https://github.com/prostojs/wf/issues" }, "homepage": "https://github.com/prostojs/wf#readme", "devDependencies": { "@types/node": "^20.19.37", "@vitest/coverage-v8": "^2.1.8", "conventional-changelog": "^3.1.25", "conventional-changelog-cli": "^2.2.2", "oxfmt": "^0.41.0", "oxlint": "^1.56.0", "semver": "^7.7.4", "tsdown": "^0.21.4", "typescript": "^5.9.3", "vitest": "^2.1.8" } }