@jinglescode/nostr-chat-plugin
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"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"], | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38832
1