UNPKG

@typecad/jlcpcb-parts

Version:

Intelligent fuzzy search for JLCPCB electrical components with CLI interface

68 lines (67 loc) 1.76 kB
{ "name": "@typecad/jlcpcb-parts", "version": "1.0.2", "description": "Intelligent fuzzy search for JLCPCB electrical components with CLI interface", "keywords": [ "jlcpcb", "components", "search", "fuzzy", "electronics", "pcb", "parts", "cli", "typescript", "typecad", "kicad", "electrical", "resistor", "capacitor", "inductor" ], "homepage": "https://typecad.net", "funding": "https://www.buymeacoffee.com/typecad", "repository": { "type": "git", "url": "https://github.com/typecad/jlcpcb-parts.git" }, "bugs": { "url": "https://github.com/typecad/jlcpcb-parts/issues" }, "author": "TypeCAD Team", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist/**/*", "README.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" }, "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", "devprepublishOnly": "npm run build:clean && npm test", "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": { "jlcpcb-search": "dist/src/cli/bin.js" } }