Enhance project structure: add AGENTS.md for repository guidelines, update .gitignore to exclude TypeScript build info, and refine package.json scripts for improved build and publish processes.

This commit is contained in:
2025-09-24 18:24:47 -04:00
parent 56e9e23e4b
commit 36cf6d6b38
26 changed files with 566 additions and 442 deletions
+5 -2
View File
@@ -17,9 +17,11 @@
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "tsc && node --test dist/**/*.test.js",
"lint": "biome check --write"
"lint": "biome check --write",
"prepublishOnly": "npm run build"
},
"dependencies": {
"psl": "1.15.0"
@@ -30,6 +32,7 @@
"@types/psl": "1.1.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18.17"
}