From 066dfd3ce4515f182bf914efcd6cea6a8e0f8ce4 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 17 Nov 2025 20:26:25 +0000 Subject: [PATCH] Add minimal package.json for dev tool compatibility This is a documentation-only repository with no dependencies or build process. Added package.json to prevent errors in IDEs and dev tools (like Dyad) that auto-detect and try to run Node.js projects. --- package.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 00000000..3285c902 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "system-prompts-and-models-of-ai-tools", + "version": "1.0.0", + "description": "A collection of system prompts and models from various AI tools - documentation only, not a runnable application", + "private": true, + "scripts": { + "info": "echo 'This is a documentation repository. No installation or build process required. Just browse the files.'" + }, + "repository": { + "type": "git", + "url": "https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools" + }, + "keywords": [ + "ai", + "prompts", + "documentation", + "system-prompts", + "claude", + "cursor", + "windsurf" + ], + "author": "", + "license": "SEE LICENSE IN LICENSE.md" +}