-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@globetracker/service-control",
"version": "0.0.4",
"description": "Service control and lifecycle management for distributed services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"lint": "biome lint src/",
"format": "biome format src/",
"typecheck": "tsc --noEmit",
"release": "bun run scripts/release.js",
"release:patch": "bun run scripts/release.js patch",
"release:minor": "bun run scripts/release.js minor",
"release:major": "bun run scripts/release.js major",
"release:prerelease": "bun run scripts/release.js prerelease",
"release:dry-run": "bun run scripts/release.js patch --dry-run",
"release:skip-tests": "bun run scripts/release.js patch --skip-tests",
"publish:npm": "npm publish",
"publish:npm:dry-run": "npm publish --dry-run"
},
"keywords": [
"service",
"control",
"lifecycle",
"distributed",
"redis",
"heartbeat"
],
"author": "Globetracker",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.0.0",
"typescript": "~5.9.0",
"ioredis": "~5.7.0",
"@sinclair/typebox": "~0.34.0",
"winston": "~3.17.0"
},
"homepage": "https://github.com/globe-tracker/service-control-module",
"repository": {
"type": "git",
"url": "https://github.com/globe-tracker/service-control-module.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/globe-tracker/service-control-module/issues"
}
}