ai-writer
v1.0.47
Published
AI Writer - AI-assisted content creator with configurable recipes. Uses OpenAI's API.
Readme
ai-writer
Introduction
This is a package to create a new ai-writer project. Use as follows:
npx create-ai-writer-project ai-writer-my-projector
npx create-ai-writer-project ../../ai-writer-my-projectPublishing to npm
To publish packages to npm you have to be logged in. To login execute the following command:
npm loginTo publish the package ai-writerexecute the following command:
npm run build
npm publishIf you make changes to your package and want to publish a new version, you need to update the version number in your package.json file. You can do this manually, or you can use the npm version command:
npm version patchThis will increase the patch version by 1 (e.g., from 1.0.0 to 1.0.1). You can also use minor or major instead of patch to increase the minor or major version number.
Once you've updated the version number, you can run npm publish again to publish the new version.
Note that there is an "all-in-one" command to build and publish the package:
npm run publish-next