hi all, does the new kotlin.sj gradle pluginn have...
# javascript
u
hi all, does the new kotlin.sj gradle pluginn have a way to add to the generated package.json? I need to add the following to work around a bug in an transitively dependet npm package:
Copy code
{
  "dependencies": {
    "xpc-connection": "sandeepmistry/node-xpc-connection#26/head"
  },
  "resolutions": {
    "xpc-connection": "sandeepmistry/node-xpc-connection#26/head"
  }
}
i
Hi! Unfortunately, there is no possibility to add custom content to package.json now. You can add it via custom gradle task Is it your dependency with custom version, linked to github? We have issue on supporting it https://youtrack.jetbrains.com/issue/KT-34468
u
thx