create-ai-writer-project
v1.0.2
Published
Create a project for AI Writer. AI Writer - AI-assisted content creator with configurable recipes. Uses OpenAI's API.
Downloads
5
Readme
Publishing to npm
To publish packages to npm you have to be logged in. To login execute the following command:
npm login
To publish the package create-ai-writer-project
execute the following command:
npm publish
If 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 patch
This 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