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

@plist/common

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@plist/common - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

lib/cjs/constants.d.ts

26

package.json
{
"name": "@plist/common",
"version": "1.0.0",
"version": "1.1.0",
"description": "Shared types and constants for Property List parsing.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
}
},
"type": "module",
"keywords": [

@@ -29,3 +38,5 @@ "common",

"prepare": "npm run build",
"build": "tsc",
"build": "npm run build:cjs && npm run build:esm",
"build:esm": "tsc --module esnext --outDir lib/esm && echo '{\"type\": \"module\"}' > lib/esm/package.json",
"build:cjs": "tsc --module commonjs --outDir lib/cjs && echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
"lint": "eslint src"

@@ -36,7 +47,8 @@ },

"license": "BSD-3-Clause-Clear",
"private": false,
"publishConfig": {
"access": "public"
},
"gitHead": "8a1d30937def9f196ec7985966d0ffc8a992b13f"
}
"devDependencies": {
"@types/node": "^20.10.8"
}
}

@@ -8,3 +8,3 @@ <h1 align="center">@plist/common</h1>

<p align="center">
<img alt="workflow" src="https://img.shields.io/github/workflow/status/mat-sz/plist/Node.js%20CI%20(yarn)">
<img alt="workflow" src="https://img.shields.io/github/actions/workflow/status/mat-sz/plist/node.js.yml?branch=main">
<a href="https://npmjs.com/package/@plist/common">

@@ -11,0 +11,0 @@ <img alt="npm" src="https://img.shields.io/npm/v/@plist/common">

@@ -1,2 +0,2 @@

export * from './types';
export * from './constants';
export * from './types.js';
export * from './constants.js';
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