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

@jinglescode/nostr-chat-plugin

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jinglescode/nostr-chat-plugin - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

dist/index.cjs.js

7

dist/package.json
{
"name": "@jinglescode/nostr-chat-plugin",
"version": "0.0.1",
"version": "0.0.2",
"description": "A NOSTR React chat plugin",
"author": "jinglescode",
"license": "MIT",
"private": false,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",

@@ -11,0 +12,0 @@ "scripts": {

{
"name": "@jinglescode/nostr-chat-plugin",
"version": "0.0.1",
"version": "0.0.2",
"description": "A NOSTR React chat plugin",

@@ -9,4 +9,4 @@ "author": "jinglescode",

"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",

@@ -13,0 +13,0 @@ "scripts": {

@@ -1,14 +0,14 @@

import typescript from 'rollup-plugin-typescript2';
import typescript from "rollup-plugin-typescript2";
export default {
input: 'src/index.ts',
input: "src/index.ts",
output: [
{
file: 'dist/index.js',
format: 'cjs',
file: "dist/index.cjs.js",
format: "cjs",
sourcemap: true,
},
{
file: 'dist/index.es.js',
format: 'es',
file: "dist/index.esm.js",
format: "es",
sourcemap: true,

@@ -18,3 +18,3 @@ },

plugins: [typescript()],
external: ['nostr-tools'],
external: ["nostr-tools"],
};
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