From 5b24a15448e4c8e2cf533ab8349bba4d9acd34b4 Mon Sep 17 00:00:00 2001 From: aka Date: Thu, 24 Oct 2024 06:31:32 +0200 Subject: [PATCH] Initialize npm project with default values Add `package.json` file to initialize npm project with default values. * Set the `name` field to "freestyle" * Set the `version` field to "1.0.0" --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/akaday/freestyle?shareId=XXXX-XXXX-XXXX-XXXX). --- package.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..3c79245 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "freestyle", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC" +}