init repo

This commit is contained in:
2025-09-11 13:41:58 +02:00
commit b4bb3e3eed
13 changed files with 178 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{
"scripts": {
"check": "clear ; npm run typecheck && npm run lint && npx prettier -c **/*.{js,jsx,ts,tsx} && clear && echo 'OK'",
"fmt": "prettier --write **/*.{js,jsx,ts,tsx}",
"lint": "eslint **/*.{js,jsx,ts,tsx}",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"log": "git+https://git.pband.ch/typescript/log.git"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/bun": "^1.2.21",
"bun": "^1.2.21",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
},
"name": "lib-template",
"description": "Template library for typescript projects",
"version": "1.0.0",
"author": "Pascal Perrenoud <pascal@pband.ch>",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts"
}
}