{
  "name": "<%- packageName %>",
  "widgetName": "<%- name %>",
  "version": "<%- version %>",
  "description": <%- JSON.stringify(description) %>,
  "copyright": <%- JSON.stringify(copyright) %>,
  "author": <%- JSON.stringify(author) %>,
  "engines": {
    "node": ">=16"
  },
  "license": <%- JSON.stringify(license) %>,
  "config": {
    "projectPath": <%- JSON.stringify(projectPath) %>
  },
  "packagePath": <%- JSON.stringify(packagePath) %>,
  "scripts": {
    "start": "pluggable-widgets-tools start:native",
    "build": "pluggable-widgets-tools build:native",
    "lint": "pluggable-widgets-tools lint",
    "lint:fix": "pluggable-widgets-tools lint:fix",<% if (hasUnitTests) { %>
    "test": "pluggable-widgets-tools test:unit:native --no-cache --ci",
    "test:unit": "pluggable-widgets-tools test:unit:native --coverage",<% } %>
    "prerelease": "npm run lint",
    "release": "pluggable-widgets-tools release:native"
  },<% if (hasUnitTests) { %>
  "jest-junit": {
    "output": "./dist/testresults/TESTS-Jest.xml"
  },<% } %>
  "devDependencies": {
    "@mendix/pluggable-widgets-tools": "^10.15.0"<% if (isLanguageTS) { %>,
    "@types/big.js": "^6.0.2"<% if (hasUnitTests) { %>,
    "@types/enzyme": "^3.10.8",
    "@types/jest": "^29.0.0"<% } %><% } %>
  },
  "dependencies": {

  },
  "resolutions": {
    "react": "^18.2.0",<% if (isLanguageTS) { %>
    "@types/react": "^18.2.0",<% } %>
    "react-native": "0.72.7"
  },
  "overrides": {
    "react": "^18.2.0",<% if (isLanguageTS) { %>
    "@types/react": "^18.2.0",<% } %>
    "react-native": "0.72.7"
  }
}
