@typicalday/firegraph 0.6.0 → 0.7.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typicalday/firegraph",
3
- "version": "0.6.0",
3
+ "version": "0.7.1",
4
4
  "description": "Generic Firestore adjacency graph client with smart query planning",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -57,7 +57,11 @@
57
57
  "skills"
58
58
  ],
59
59
  "scripts": {
60
- "prepare": "tsup && (npm run build:editor || true)",
60
+ "prepare": "husky && tsup && (npm run build:editor || true)",
61
+ "format": "prettier --write .",
62
+ "format:check": "prettier --check .",
63
+ "lint": "eslint .",
64
+ "lint:fix": "eslint --fix .",
61
65
  "build": "tsup",
62
66
  "build:editor:client": "cd editor && npx vite build",
63
67
  "build:editor:server": "node editor/build-server.mjs",
@@ -97,15 +101,26 @@
97
101
  },
98
102
  "dependencies": {
99
103
  "ajv": "^8.18.0",
104
+ "ajv-formats": "^3.0.1",
100
105
  "esbuild": "^0.24.0",
101
106
  "jiti": "^2.4.0",
102
107
  "nanoid": "^5.0.9",
103
108
  "ses": "^1.15.0"
104
109
  },
105
110
  "devDependencies": {
111
+ "@commitlint/cli": "^20.5.0",
112
+ "@commitlint/config-conventional": "^20.5.0",
106
113
  "@google-cloud/firestore": "^8.3.0",
114
+ "@typescript-eslint/eslint-plugin": "^8.57.2",
115
+ "@typescript-eslint/parser": "^8.57.2",
107
116
  "@vitest/coverage-v8": "^3.0.0",
117
+ "eslint": "^10.1.0",
118
+ "eslint-config-prettier": "^10.1.8",
119
+ "eslint-plugin-simple-import-sort": "^12.1.1",
120
+ "husky": "^9.1.7",
108
121
  "json-schema-to-typescript": "^15.0.4",
122
+ "lint-staged": "^16.4.0",
123
+ "prettier": "^3.8.1",
109
124
  "tsup": "^8.4.0",
110
125
  "typescript": "^5.7.0",
111
126
  "vitest": "^3.0.0"