package.json 771 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "smartknobjs-node",
  3. "version": "1.0.0",
  4. "description": "SmartKnob Interface Library for Node.js",
  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. "serialport": "^9.2.4",
  16. "smartknobjs-core": "^1.0.0",
  17. "smartknobjs-proto": "^1.0.0"
  18. },
  19. "devDependencies": {
  20. "@typescript-eslint/eslint-plugin": "^5.40.1",
  21. "@typescript-eslint/parser": "^5.40.1",
  22. "eslint": "^8.25.0",
  23. "prettier": "^2.4.1",
  24. "ts-node": "^10.2.1",
  25. "typescript": "^4.8.4"
  26. }
  27. }