Initial Commit

This commit is contained in:
2026-02-23 09:49:45 +00:00
commit d25ed7cb9d
12 changed files with 1805 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "ss-filter",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"generate-examples": "tsx src/generate-examples.ts",
"graph": "tsx src/index.ts",
"start": "npm run graph",
"build-graph": "npm run generate-examples && npm run graph",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^25.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@bitauth/libauth": "^3.0.0"
}
}