Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@integration-app/sdk

Package Overview
Dependencies
Maintainers
4
Versions
444
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@integration-app/sdk

JavaScript SDK for Integration.app

  • 0.16.55
  • npm
  • Socket score

Version published
Weekly downloads
5.3K
increased by26.49%
Maintainers
4
Weekly downloads
 
Created
Source

Releasing Package

To release a new version of a package (@integration-app/sdk, @integration-app/ui, @integration-app/react), do the following:

  • Go to the package and type npm version -- patch (or npm version -- minor or npm version -- major) to bump the version.
  • Create a PR with the changes.
  • Merge the PR.
  • Run a Github Action to publish a package.

Rollup config

Check out the rollup.config.mjs file for the full config.

It's pretty self-explanatory, but here's some additional info:

We set {external: [/node_modules/]} because we don't want to bundle any of our dependencies. If we need to bundle some dependencies and some not, we can use rollup-plugin-peer-deps-external plugin instead of this.

DTS

DTS files are generated by tsc and placed in dist/dts folder. After that plugin rollup-plugin-dts is used to generate *.d.ts files for each bundle.

Package.json exports

{
  "exports": {
    "types": "./dist/index.d.ts",       // TypeScript typings for NodeNext modules
    "require": "./dist/index.js",       // used for require() in Node 12+
    "import": "./dist/index.module.mjs" // ESM bundle
  },
  "types": "./dist/index.d.ts",         // TypeScript typings
  "main": "./dist/index.js",            // CommonJS bundle
  "module": "./dist/index.module.mjs",  // ESM bundle
  "unpkg": "./bundle.js",               // UMD bundle
}

FAQs

Package last updated on 27 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc