package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@d8d-localtunnel/client",
  3. "description": "D8D LocalTunnel Client - Expose localhost to the world",
  4. "version": "1.0.1",
  5. "license": "MIT",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/d8d-cloud/d8d-localtunnel.git"
  9. },
  10. "author": "D8D Cloud <support@d8d.cloud>",
  11. "main": "./dist/localtunnel.js",
  12. "types": "./dist/localtunnel.d.ts",
  13. "bin": {
  14. "d8d-lt": "dist/bin/lt.js"
  15. },
  16. "scripts": {
  17. "build": "tsc",
  18. "test": "jest",
  19. "prepare": "npm run build",
  20. "dev": "tsc --watch",
  21. "start:example": "DEBUG=tunnel:* ts-node src/examples/client.example.ts",
  22. "dev:example": "DEBUG=tunnel:*,localtunnel:* nodemon --watch src -e ts --exec ts-node src/examples/client.example.ts"
  23. },
  24. "dependencies": {
  25. "axios": "0.21.4",
  26. "debug": "4.3.2",
  27. "openurl": "1.1.1",
  28. "yargs": "17.1.1"
  29. },
  30. "devDependencies": {
  31. "@types/debug": "^4.1.8",
  32. "@types/jest": "^27.0.1",
  33. "@types/node": "^16.7.10",
  34. "@types/yargs": "^17.0.2",
  35. "jest": "^27.1.0",
  36. "ts-jest": "^27.0.5",
  37. "typescript": "^4.4.2",
  38. "ts-node": "^10.9.1",
  39. "nodemon": "^2.0.22"
  40. },
  41. "engines": {
  42. "node": ">=8.3.0"
  43. },
  44. "publishConfig": {
  45. "access": "public"
  46. }
  47. }