New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aliemir/dom-to-fiber-utils

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aliemir/dom-to-fiber-utils - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

dist/index.cjs

23

package.json

@@ -5,3 +5,3 @@ {

"private": false,
"version": "0.4.0",
"version": "0.4.1",
"author": {

@@ -16,8 +16,21 @@ "name": "Ali Emir Şen",

},
"main": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "tsup --watch --format esm,cjs,iife --legacy-output",
"build": "tsup --format esm,cjs,iife --minify --legacy-output"
"dev": "tsup --watch",
"build": "tsup",
"types": "node ../shared/generate-declarations.js"
},

@@ -24,0 +37,0 @@ "dependencies": {

@@ -8,5 +8,7 @@ import { defineConfig } from "tsup";

clean: false,
dts: false,
minify: true,
format: ["cjs", "esm"],
outExtension: ({ format }) => ({ js: format === "cjs" ? ".cjs" : ".mjs" }),
platform: "browser",
onSuccess: "tsc --project tsconfig.declarations.json",
onSuccess: "npm run types",
});
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