@plist/common
Advanced tools
Comparing version 1.0.0 to 1.1.0
{ | ||
"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'; |
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
20
109
Yes
6292
1
1