@einaraglen/quorum 1.0.0 → 1.0.3

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,43 +1,49 @@
1
- {
2
- "name": "@einaraglen/quorum",
3
- "version": "1.0.0",
4
- "description": "Distributed pod coordination: Bully leader election and work sharding",
5
- "keywords": [
6
- "leader-election",
7
- "sharding",
8
- "distributed-systems"
9
- ],
10
- "license": "ISC",
11
- "repository": {
12
- "type": "git",
13
- "url": "git+https://github.com/einaraglen/quorum.git"
14
- },
15
- "type": "module",
16
- "publishConfig": {
17
- "access": "public"
18
- },
19
- "files": [
20
- "dist"
21
- ],
22
- "main": "./dist/index.js",
23
- "types": "./dist/index.d.ts",
24
- "exports": {
25
- ".": {
26
- "types": "./dist/index.d.ts",
27
- "default": "./dist/index.js"
28
- }
29
- },
30
- "scripts": {
31
- "test": "tsx --test --test-reporter=spec --test-reporter-destination=stdout src/**/*.test.ts",
32
- "build": "tsc"
33
- },
34
- "devDependencies": {
35
- "@types/express": "^5.0.6",
36
- "@types/node": "^24.9.2",
37
- "tsx": "^4.23.12",
38
- "typescript": "^7.0.2"
39
- },
40
- "dependencies": {
41
- "express": "^5.2.1"
42
- }
43
- }
1
+ {
2
+ "name": "@einaraglen/quorum",
3
+ "version": "1.0.3",
4
+ "description": "Distributed pod coordination: Bully leader election and work sharding",
5
+ "keywords": [
6
+ "leader-election",
7
+ "sharding",
8
+ "distributed-systems"
9
+ ],
10
+ "license": "ISC",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/einaraglen/quorum.git"
14
+ },
15
+ "type": "module",
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ }
29
+ },
30
+ "scripts": {
31
+ "test": "tsx --test --test-reporter=spec --test-reporter-destination=stdout src/**/*.test.ts",
32
+ "build": "tsc",
33
+ "format": "prettier --write .",
34
+ "format:check": "prettier --check .",
35
+ "lint": "oxlint .",
36
+ "check": "npm run format:check && npm run lint"
37
+ },
38
+ "devDependencies": {
39
+ "@types/express": "^5.0.6",
40
+ "@types/node": "^24.9.2",
41
+ "oxlint": "^1.80.0",
42
+ "prettier": "^3.9.6",
43
+ "tsx": "^4.23.12",
44
+ "typescript": "^7.0.2"
45
+ },
46
+ "dependencies": {
47
+ "express": "^5.2.1"
48
+ }
49
+ }