7.0.0 • Published 6 months ago

write-pkg v7.0.0

Weekly downloads
1,214,219
License
MIT
Repository
github
Last release
6 months ago

write-pkg

Write a package.json file

Writes atomically and creates directories for you as needed. Sorts dependencies when writing. Preserves the indentation if the file already exists.

Install

npm install write-pkg

Usage

import path from 'node:path';
import {writePackage} from 'write-pkg';

await writePackage({foo: true});
console.log('done');

await writePackage(path.join('unicorn', 'package.json'), {foo: true});
console.log('done');

API

writePackage(path?, data, options?)

Returns a Promise that resolves when the package.json file has been written.

writePackageSync(path?, data, options?)

path

Type: string\ Default: process.cwd()

The path to where the package.json file should be written or its directory.

data

Type object

JSON data to write to the package.json file.

options

Type: object

See Options.

updatePackage(path?, data, options?)

Returns a Promise that resolves when the package.json file has been updated.

updatePackageSync(path?, data, options?)

import {updatePackage} from 'write-pkg';

await updatePackage({foo: true});
//=> { "foo": true }

await updatePackage({foo: false, bar: true});
//=> { "foo": false, "bar": true }

path

Type: string\ Default: process.cwd()

The path to where the package.json file should be written or its directory.

data

Type object

JSON data to write to the package.json file. If the file already exists, existing fields will be merged with the values in data.

options

Type: object

See Options.

addPackageDependencies(path?, dependencies, options?)

Returns a Promise that resolves when the package.json file has been written.

addPackageDependenciesSync(path?, dependencies, options?)

import {writePackage, addPackageDependencies} from 'write-pkg';

await writePackage({foo: true});
//=> { "foo": true }

await addPackageDependencies({foo: '1.0.0'});
//=> { "foo": true, "dependencies": { "foo": "1.0.0" } }

await addPackageDependencies({dependencies: {foo: '1.0.0'}, devDependencies: {bar: '1.0.0'}});
//=> { "foo": true, "dependencies": { "foo": "1.0.0" }, "devDependencies": { "bar": "1.0.0" } }

path

Type: string\ Default: process.cwd()

The path to where the package.json file should be written or its directory.

dependencies

Type: Record<string, string> | Partial<Record<'dependencies' | 'devDependencies' | 'optionalDependencies' | 'peerDependencies', Record<string, string>>>

Dependencies to add to the package.json file.

options

Type: object

See Options.

removePackageDependencies(path?, dependencies, options?)

Returns a Promise that resolves when the package.json file has been written. Does not throw if the file does not exist.

removePackageDependenciesSync(path?, dependencies, options?)

import {writePackage, removePackageDependencies} from 'write-pkg';

await writePackage({foo: true, dependencies: {foo: '1.0.0'}, devDependencies: {bar: '1.0.0'}});
//=> { "foo": true, "dependencies": { "foo": "1.0.0" }, "devDependencies": { "bar": "1.0.0" } }

await removePackageDependencies(['foo']);
//=> { "foo": true, "devDependencies": { "bar": "1.0.0" } }

await removePackageDependencies({devDependencies: ['bar']});
//=> { "foo": true }

path

Type: string\ Default: process.cwd()

The path to where the package.json file should be written or its directory.

dependencies

Type string[] | Partial<Record<'dependencies' | 'devDependencies' | 'optionalDependencies' | 'peerDependencies', string[]>>

Dependencies to remove from the package.json file.

options

Type: object

See Options.

Options

indent

Type: string | number\ Default: Auto-detected or '\t'

The indentation to use for new files.

Accepts '\t' for tab indentation or a number of spaces.

If the file already exists, the existing indentation will be used.

normalize

Type: boolean\ Default: true

Remove empty dependencies, devDependencies, optionalDependencies and peerDependencies objects.

write-pkg for enterprise

Available as part of the Tidelift Subscription.

The maintainers of write-pkg and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.

Related

lerna@lerna/create@lerna/npm-install@lerna/package@megasaur/npm-install@megasaur/package@essent/lerna@donmhico/create-wds-block@donmhico/wds-create-blockcheck-dependency-enginesclean-slate-lint@frxf/frxfwarpdrive-sdk@thebespokepixel/cordialcogoportutils@edunse/serverbabel7-upgradefpd@everything-registry/sub-chunk-3166dufl-scaffoldeffe-readmecreate-posthtml-tseaglesongzzzxxxyyy321123force-latest-versionsfixed_form_builderjohn-test-upgradexo-initzefirzen-binkbnwp-block-builderjamuskalim@generates/package-updater@geeks-log/devops@geeks-log/package-manager@gem-mine/clil2forlernagit-hash-packagegive-me-fileglickygh-monoproject-cligi-cliwxfe-ytianxcli-umi-templatejtcommandytianhusky-confwinx-form-winxwhys-scriptsinit-react-redux-app@goldwasserexchange/read-pkg-up-helpers@justathoughtnz/justathoughtnz-vapid-cli@iolaus/coremhydmhy@ices/check-dependency-engines@ianwalter/update-package@manycore/baozheng-publish-scripts@ljadenwongl/mp-cli@lytics/viz-create-preset@meza/jest-coverage-bumper@lugia/lugia-complienetlify-docs@mcesystems/lerna@merna/npm-install@merna/package@lomray/rollup-plugin-generate-package-json-v2@intelligentgraphics/ig.gfx.packagerlerna-markmarijnissenlerna-clilerna-custom@hieuquang2212/formyqb-test-suiteluojia-cli-devmaintainrlerna-wod@infinitebrahmanuniverse/nolb-wr@gridonic/webpacklcd-cli@iuv-tools/changelogmelodrama-scriptsmodify-pkg-upmonilla@jetbrains/lerna@knit/knitmodule-starter@lerna/legacy-package-managementmini-mp-climiniapp-env-climiscible@karst/template-cli@juice-js/semantic-release-npmlazy-bee-uilinc-clilinc-profile-generic-react@hutson/npm-deploy-git-tag@heslin/create-fastifylntmos-init
6.0.1

6 months ago

7.0.0

6 months ago

6.0.0

9 months ago

5.1.0

2 years ago

5.0.0

3 years ago

4.0.0

5 years ago

3.2.0

6 years ago

3.1.0

7 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.1.0

7 years ago

2.0.0

8 years ago

1.0.0

9 years ago