chore: initial repo config

This commit is contained in:
2025-08-12 12:24:49 -06:00
commit 64af8e6d95
13 changed files with 498 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "st-randomness-helpers",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.1.5"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"prepare": "husky",
"dev": "bun build --watch src/index.ts --outdir ./dist --target browser",
"build": "bun build src/index.ts --outdir ./dist --target browser"
}
}