UNPKG

edacation

Version:

Library and CLI for interacting with Yosys and nextpnr.

53 lines (52 loc) 1.55 kB
{ "name": "edacation", "description": "Library and CLI for interacting with Yosys and nextpnr.", "license": "MIT", "version": "0.4.0", "contributors": [ "Danielle Huisman <danielle@huisman.me> (https://github.com/DanielleHuisman)", "Mike Almeloo <git@mikealmel.ooo> (https://github.com/DismissedGuy)" ], "repository": "github:EDAcation/edacation", "keywords": [ "edacation", "cli", "yosys", "nextpnr" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "systemd", "LICENSE.md", "README.md", "package.json" ], "bin": "./dist/cli/index.js", "scripts": { "lint": "eslint ./src --ext ts", "clean": "rm -rf dist", "build": "yarn run clean && yarn run lint && tsc", "prepare": "yarn run build", "dev": "node --loader ts-node/esm src/cli/index.ts" }, "dependencies": { "string-args-parser": "^1.0.4", "yargs": "^17.7.2", "zod": "^3.23.8" }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/node": "^20.14.8", "@types/yargs": "^17.0.32", "@typescript-eslint/eslint-plugin": "^8.4.0", "@typescript-eslint/parser": "^8.4.0", "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", "eslint-plugin-import": "^2.29.1", "prettier": "^3.3.2", "ts-node": "^10.9.2", "typescript": "^5.4.5" } }