chore: initial setup

That sweet sweet bunch of JS dotfiles
This commit is contained in:
Gustavo "Guz" L. de Mello
2024-01-18 00:20:38 -03:00
parent f00b271799
commit e167378d27
17 changed files with 4387 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "lilbetter.js",
"version": "0.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"test": "vitest",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "changeset publish"
},
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/types": "^18.4.4",
"@eslegant/js": "0.0.0-next-20230910004746",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"vitest": "^1.2.1"
}
}