package.json 714 B

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