initial commit

This commit is contained in:
EatThePooh 2026-02-15 17:38:53 +07:00
commit db4a1e24ca
10 changed files with 1977 additions and 0 deletions

21
package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "name-placeholder",
"version": "0.1.0",
"type": "module",
"bin": {
"name-placeholder": "./dist/index.js"
},
"dependencies": {
"@stricli/core": "^1.2.5",
"dax": "^0.45.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsup src/index.ts",
"check": "tsc --noEmit && biome check ."
}
}