commit 8451ba6e3d917f9816fc04653b7c0b002151549a Author: Zlatko Đurić Date: Sun Apr 13 12:19:08 2025 +0200 dragon commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9ed0cd9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/packs/ +/node_modules/ +tmp/ +.idea/ diff --git a/module.json b/module.json new file mode 100644 index 0000000..ccd4ab7 --- /dev/null +++ b/module.json @@ -0,0 +1,37 @@ +{ + "id": "yet-another-timer", + "title": "Yet Another Timer", + "description": "A simple timer module", + "authors": [ + { + "name": "Zlatko", + "email": "zlatko@zlatko.dev", + "url": "https://zlatko.dev" + } + ], + "version": "0.1.0", + "compatibility": { + "minimum": 12, + "verified": 12 + }, + "languages": [ + { + "lang": "en", + "name": "English", + "path": "lang/en.json" + }, + { + "lang": "en", + "name": "English", + "path": "lang/en.json" + }, + { + "lang": "en", + "name": "English", + "path": "lang/en.json" + } + ], + "url": "https://zlatko.dev/projects/vtt-timer", + "manifest": "https://gitea.zlatko.dev/vtt/timer", + "download": "missing-url" +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..42d36f4 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "@zladuric/timer", + "version": "0.0.1", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "Zlatko Duric (https://zlatko.dev/)", + "license": "MIT", + "description": "" +}