UNPKG

@typecad/kicad-symbols

Version:

Intelligent fuzzy search for KiCad symbols with CLI interface

59 lines (58 loc) 1.5 kB
{ "name": "@typecad/kicad-symbols", "version": "1.0.5", "description": "Intelligent fuzzy search for KiCad symbols with CLI interface", "keywords": [ "kicad", "symbols", "search", "fuzzy", "electronics", "schematic", "parts", "cli", "typescript", "typecad", "electrical", "components", "library" ], "homepage": "https://typecad.net", "funding": "https://www.buymeacoffee.com/typecad", "author": "typeCAD", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist/**/*", "README.md", "CONFIGURATION.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "devDependencies": { "@types/node": "^22.13.0", "typescript": "^5.2.2", "vitest": "^1.0.0" }, "dependencies": { "chalk": "^5.4.1", "find-bin": "^1.1.0" }, "scripts": { "build": "tsc", "build:clean": "powershell -Command \"if (Test-Path dist) { Remove-Item -Recurse -Force dist }\" && npm run build", "dev": "tsx index.ts", "test": "vitest --run", "test:watch": "vitest", "publish:patch": "npm version patch && npm publish --access public", "publish:minor": "npm version minor && npm publish --access public", "publish:major": "npm version major && npm publish --access public", "package_publish": "npm publish --access public" }, "bin": { "kicad-symbols": "dist/src/cli/bin.js" } }