package.json.tmpl 484 B

12345678910111213141516
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. // Template for the package.json that is generated by the build-pkg command.
  4. // The version number will be replaced by the current Tailscale client version
  5. // number.
  6. {
  7. "author": "Tailscale Inc.",
  8. "description": "Tailscale Connect SDK",
  9. "license": "BSD-3-Clause",
  10. "name": "@tailscale/connect",
  11. "type": "module",
  12. "main": "./pkg.js",
  13. "types": "./pkg.d.ts",
  14. "version": "AUTO_GENERATED"
  15. }