From b1ab57596d410d27f14da0750c85f011bbfdc5c7 Mon Sep 17 00:00:00 2001 From: dev Date: Mon, 1 Jun 2026 15:01:31 -0500 Subject: [PATCH] chore: initialize project --- .gitignore | 3 +++ README.md | 5 +++++ package.json | 9 +++++++++ 3 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 package.json 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/" + } +}