github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/typescript-fetch/package.mustache (about)

     1  {
     2    "name": "{{npmName}}",
     3    "version": "{{npmVersion}}",
     4    "description": "OpenAPI client for Phrase Strings",
     5    "author": "OpenAPI-Generator",
     6    "license" : "MIT",
     7    "main": "./dist/index.js",
     8    "typings": "./dist/index.d.ts",
     9    "scripts": {
    10      "build": "tsc",
    11      "prepare": "npm run build",
    12      "test": "jest"
    13    },
    14    "devDependencies": {
    15      "@types/jest": "^29.5.5",
    16      "form-data": "^4.0.0",
    17      "jest": "^29.7.0",
    18      "ts-jest": "^29.1.1",
    19      "typescript": "^4.9.5"
    20    }{{#npmRepository}},{{/npmRepository}}
    21  {{#npmRepository}}
    22    "publishConfig": {
    23      "registry": "{{npmRepository}}"
    24    }
    25  {{/npmRepository}}
    26  }