commit b1ab57596d410d27f14da0750c85f011bbfdc5c7 Author: dev Date: Mon Jun 1 15:01:31 2026 -0500 chore: initialize project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2fbf204 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +.superpowers/ +.vscode/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..715dfa1 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Torn Attribute Training Tracker + +A userscript for [torn.com](https://www.torn.com) that shows a floating dialog on the gym page with your attribute, target, and ETA. + +_(installation and usage coming once tasks complete)_ diff --git a/package.json b/package.json new file mode 100644 index 0000000..ea16505 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "torn-attribute-training-tracker", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "test": "node --test tests/" + } +}