Socket
Socket
Sign inDemoInstall

@pnpm/write-project-manifest

Package Overview
Dependencies
4
Maintainers
3
Versions
55
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnpm/write-project-manifest


Version published
Maintainers
3
Created

Package description

What is @pnpm/write-project-manifest?

@pnpm/write-project-manifest is an npm package that allows you to programmatically write and update the package.json file of a project. This can be useful for automating project setup, dependency management, and other tasks that involve modifying the package.json file.

What are @pnpm/write-project-manifest's main functionalities?

Write a new package.json

This feature allows you to create a new package.json file with the specified content. The code sample demonstrates how to define a new package.json and write it to the current directory.

const { writeProjectManifest } = require('@pnpm/write-project-manifest');

const manifest = {
  name: 'my-new-project',
  version: '1.0.0',
  description: 'A new project',
  main: 'index.js',
  scripts: {
    start: 'node index.js'
  },
  dependencies: {}
};

writeProjectManifest('.', manifest).then(() => {
  console.log('package.json has been written');
});

Update an existing package.json

This feature allows you to update an existing package.json file. The code sample demonstrates how to read the current package.json, modify its content, and write the updated content back to the file.

const { writeProjectManifest } = require('@pnpm/write-project-manifest');
const fs = require('fs');

const manifestPath = './package.json';
const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf-8'));

manifest.version = '1.0.1';
manifest.scripts.test = 'jest';

writeProjectManifest('.', manifest).then(() => {
  console.log('package.json has been updated');
});

Other packages similar to @pnpm/write-project-manifest

Readme

Source

@pnpm/write-project-manifest

Write a project manifest (called package.json in most cases)

npm version

Installation

<npm|yarn|pnpm> add @pnpm/write-project-manifest

Usage

import writeProjectManifest from '@pnpm/write-project-manifest'
import path = require('path')

(async () => await writeProjectManifest(path.resolve('package.yaml'), { name: 'foo', version: '1.0.0' }))()

License

MIT © Zoltan Kochan

Keywords

FAQs

Last updated on 07 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc