ci: clean up and conventions (#52)

This commit is contained in:
Jef LeCompte
2025-07-20 22:13:17 -07:00
committed by GitHub
parent 4ac37de08e
commit 60321a37e6
14 changed files with 407 additions and 122 deletions

View File

@@ -18,17 +18,24 @@
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"build": "tsc",
"dev": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.0.14",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.0.15",
"eslint": "^9.31.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rollup": "^4.45.1",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",