package.json 785 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "example",
  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. "main": "ts-node src/index.ts"
  12. },
  13. "author": "",
  14. "license": "Apache-2.0",
  15. "dependencies": {
  16. "serialport": "^9.2.4",
  17. "smartknobjs": "^0.1.0"
  18. },
  19. "devDependencies": {
  20. "@types/serialport": "^8.0.2",
  21. "@typescript-eslint/eslint-plugin": "^5.40.1",
  22. "@typescript-eslint/parser": "^5.40.1",
  23. "eslint": "^8.25.0",
  24. "prettier": "^2.4.1",
  25. "ts-node": "^10.2.1",
  26. "typescript": "^4.8.4"
  27. }
  28. }