UNPKG

@typecad/kicad-symbols

Version:

Intelligent fuzzy search for KiCad symbols with CLI interface

64 lines (63 loc) 1.61 kB
{ "name": "@typecad/kicad-symbols", "version": "1.0.6", "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", "license": "EULA", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "publishConfig": { "access": "public" }, "files": [ "dist/**/*", "README.md", "CONFIGURATION.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "devDependencies": { "@types/node": "^22.13.0", "typescript": "^5.7.3", "vitest": "^3.2.1" }, "dependencies": { "chalk": "^5.4.1", "@typecad/typecad": "^0.2.19" }, "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", "publish:private": "npm publish --tag private --registry http://192.168.2.207:4873/" }, "bin": { "kicad-symbols": "dist/src/cli/bin.js" } }