init: HIPPIE script

Node module to be used with HIPPIE.
This commit is contained in:
sthag 2025-11-02 14:10:05 +01:00
commit 0c2bb7a7f7
3 changed files with 29 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.idea/
node_modules/

5
index.js Normal file
View file

@ -0,0 +1,5 @@
module.exports = {
hippie: {
brand: "|-| | |^ |^ | [- "
}
}

22
package.json Normal file
View file

@ -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 <sthag@interaktionsweise.de> (https://karte.interaktionsweise.de)",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": true
}