package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@serialport/bindings-interface",
  3. "version": "1.2.2",
  4. "description": "SerialPort Bindings Typescript Types",
  5. "types": "dist/index.d.ts",
  6. "main": "./dist/index.js",
  7. "exports": {
  8. "require": "./dist/index.js",
  9. "default": "./dist/index-esm.mjs"
  10. },
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "engines": {
  15. "node": "^12.22 || ^14.13 || >=16"
  16. },
  17. "repository": "git@github.com:serialport/bindings-interface.git",
  18. "homepage": "https://github.com/serialport/bindings-interface",
  19. "scripts": {
  20. "lint": "tsc && eslint lib/**/*.ts",
  21. "format": "eslint lib/**/*.ts --fix",
  22. "clean": "rm -rf dist-ts dist",
  23. "build": "npm run clean && tsc -p tsconfig-build.json && rollup -c && node -r esbuild-register bundle-types",
  24. "prepublishOnly": "npm run build",
  25. "semantic-release": "semantic-release"
  26. },
  27. "keywords": [
  28. "serialport",
  29. "serialport-binding"
  30. ],
  31. "license": "MIT",
  32. "dependencies": {},
  33. "devDependencies": {
  34. "@microsoft/api-extractor": "7.19.4",
  35. "@types/node": "17.0.8",
  36. "@typescript-eslint/eslint-plugin": "5.10.2",
  37. "@typescript-eslint/parser": "5.10.2",
  38. "esbuild": "0.14.18",
  39. "esbuild-register": "3.3.2",
  40. "eslint": "7.32.0",
  41. "rollup": "2.67.0",
  42. "rollup-plugin-node-resolve": "5.2.0",
  43. "semantic-release": "19.0.2",
  44. "typescript": "4.5.5"
  45. }
  46. }