package.json 809 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "smartknobjs",
  3. "version": "0.1.0",
  4. "description": "SmartKnob Interface Library",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc",
  9. "format": "prettier --write \"**/*.+(js|ts|json)\"",
  10. "lint": "eslint --ext .js,.ts ."
  11. },
  12. "author": "",
  13. "license": "Apache-2.0",
  14. "dependencies": {
  15. "cobs": "^0.2.1",
  16. "crc-32": "^1.2.0",
  17. "serialport": "^9.2.4",
  18. "smartknobjs-proto": "^0.1.0"
  19. },
  20. "devDependencies": {
  21. "@types/serialport": "^8.0.2",
  22. "@typescript-eslint/eslint-plugin": "^5.40.1",
  23. "@typescript-eslint/parser": "^5.40.1",
  24. "eslint": "^8.25.0",
  25. "prettier": "^2.4.1",
  26. "ts-node": "^10.2.1",
  27. "typescript": "^4.8.4"
  28. }
  29. }