gaboesquivel 3.9.5 → 3.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1675,7 +1675,7 @@ var techStack = [
1675
1675
  },
1676
1676
  {
1677
1677
  name: "TanStack Query",
1678
- slug: "tanstack",
1678
+ slug: "tanstack-query",
1679
1679
  tag: "TanStack Query",
1680
1680
  image: "/images/tech/tanstack.png",
1681
1681
  description: "Powerful asynchronous state management for fetching, caching, and updating data in React applications.",
package/dist/index.mjs CHANGED
@@ -1643,7 +1643,7 @@ var techStack = [
1643
1643
  },
1644
1644
  {
1645
1645
  name: "TanStack Query",
1646
- slug: "tanstack",
1646
+ slug: "tanstack-query",
1647
1647
  tag: "TanStack Query",
1648
1648
  image: "/images/tech/tanstack.png",
1649
1649
  description: "Powerful asynchronous state management for fetching, caching, and updating data in React applications.",
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
- "name": "gaboesquivel",
3
- "version": "3.9.5",
4
- "description": "Gabo Esquivel - Software Engineer",
5
- "author": "Gabo Esquivel",
6
- "main": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "scripts": {
9
- "build": "tsup src/index.ts --format cjs,esm --dts",
10
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
11
- "prepublishOnly": "npm run build"
12
- },
13
- "devDependencies": {
14
- "tsup": "^8.4.0",
15
- "typescript": "^5.8.2"
16
- },
17
- "files": [
18
- "dist"
19
- ]
2
+ "name": "gaboesquivel",
3
+ "version": "3.9.6",
4
+ "description": "Gabo Esquivel - Software Engineer",
5
+ "author": "Gabo Esquivel",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsup src/index.ts --format cjs,esm --dts",
10
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
11
+ "prepublishOnly": "npm run build",
12
+ "hooks:pre-commit": "biome check --write --staged --no-errors-on-unmatched && git update-index --again",
13
+ "lint": "biome check .",
14
+ "lint:fix": "biome check . --write"
15
+ },
16
+ "devDependencies": {
17
+ "simple-git-hooks": "2.11.1",
18
+ "tsup": "^8.4.0",
19
+ "typescript": "^5.8.2"
20
+ },
21
+ "simple-git-hooks": {
22
+ "pre-commit": "bun run hooks:pre-commit"
23
+ },
24
+ "files": ["dist"]
20
25
  }