All Downloads are FREE. Search and download functionalities are using the official Maven repository.

typescript.package.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{
  "name": "{{npmName}}",
  "version": "{{npmVersion}}",
  "description": "OpenAPI client for {{npmName}}",
  "author": "OpenAPI-Generator Contributors",
  "repository": {
    "type": "git",
    "url": "https://{{gitHost}}/{{gitUserId}}/{{gitRepoId}}.git"
  },
  "keywords": [
    "fetch",
    "typescript",
    "openapi-client",
    "openapi-generator"
  ],
  "license": "Unlicense",
  "main": "./dist/index.js",
  {{#supportsES6}}
  "type": "module",
  "module": "./dist/index.js",
  {{/supportsES6}}
  {{^supportsES6}}
  "type": "commonjs",
  {{/supportsES6}}
  "exports": {
    ".": {
      {{#supportsES6}}
      "import": "./dist/index.js",
      {{/supportsES6}}
      {{^supportsES6}}
      "require": "./dist/index.js",
      {{/supportsES6}}
      "types": "./dist/index.d.js"
    }
  },
  "typings": "./dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "prepare": "npm run build"
  },
  "dependencies": {
    {{#frameworks}}
      {{#fetch-api}}
        {{#platforms}}
          {{#node}}
    "node-fetch": "^2.6.0",
    "@types/node-fetch": "^2.5.7",
          {{/node}}
          {{#browser}}
    "whatwg-fetch": "^3.0.0",
          {{/browser}}
        {{/platforms}}
      {{/fetch-api}}
      {{#jquery}}
    "@types/jquery": "^3.3.29",
    "jquery": "^3.4.1",
      {{/jquery}}
    {{/frameworks}}
    {{#platforms}}
      {{#node}}
    "@types/node": "*",
    "form-data": "^2.5.0",
      {{/node}}
    {{/platforms}}
    {{#useRxJS}}
    "rxjs": "^6.4.0",
    {{/useRxJS}}
    {{#useInversify}}
    "inversify": "^5.0.1",
    {{/useInversify}}
    "es6-promise": "^4.2.4",
    "url-parse": "^1.4.3"
  },
  "devDependencies": {
    "typescript": "^4.0",
    "@types/url-parse": "1.4.4"
  }{{#npmRepository}},{{/npmRepository}}
{{#npmRepository}}
  "publishConfig":{
    "registry":"{{npmRepository}}"
  }
{{/npmRepository}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy