UNPKG

diagrams-as-code

Version:

Port of https://github.com/dmytrostriletskyi/diagrams-as-code

50 lines 1.07 kB
{ "name": "diagrams-as-code", "version": "0.0.1", "description": "Port of https://github.com/dmytrostriletskyi/diagrams-as-code", "type": "module", "keywords": [ "yaml", "graphviz", "architecture", "diagrams", "system-design", "diagrams-as-code" ], "author": "stereobooster", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/stereobooster/diagrams-as-code.git" }, "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "main": "./dist/index.js", "module": "./dist/index.js", "files": [ "dist" ], "types": "./dist/index.d.ts", "dependencies": { "@hpcc-js/wasm-graphviz": "^1.7.0", "ts-graphviz": "^2.1.6", "yaml": "^2.7.1", "zod": "3.23.8" }, "devDependencies": { "@types/node": "^22.14.1", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "scripts": { "test": "vitest", "build": "rm -rf dist && tsc", "dev": "tsc --watch", "clean": "rm -rf dist" } }