commit 0c2bb7a7f72c8282585d56400b521b6f6b8135ee Author: sthag Date: Sun Nov 2 14:10:05 2025 +0100 init: HIPPIE script Node module to be used with HIPPIE. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1fe1b00 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/ +node_modules/ diff --git a/index.js b/index.js new file mode 100644 index 0000000..021ec24 --- /dev/null +++ b/index.js @@ -0,0 +1,5 @@ +module.exports = { + hippie: { + brand: "|-| | |^ |^ | [- " + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..0aecf6b --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "hippie-script", + "version": "1.0.0", + "description": "Where the script things of HIPPIE are", + "keywords": [ + "hippie", + "javascript", + "components" + ], + "repository": { + "type": "git", + "url": "https://quelltext.interaktionsweise.de/interaktionsweise/hippie-script.git" + }, + "license": "MIT", + "author": "Stephan Hagedorn (https://karte.interaktionsweise.de)", + "type": "commonjs", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "private": true +}