do all the boring ts stuff to make this actually work

This commit is contained in:
2026-04-08 15:04:41 -05:00
parent 2a9ef16425
commit 242fb37a67
7 changed files with 113 additions and 3 deletions
+9 -3
View File
@@ -1,12 +1,18 @@
{
"name": "tether-ts",
"version": "1.0.2",
"version": "1.0.3",
"description": "TypeScript client for Tether",
"license": "ISC",
"author": "wisplite",
"type": "module",
"main": "index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch"
},
"devDependencies": {
"typescript": "^6.0.2"
}
}