glooit 0.4.0

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 ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "glooit",
3
+ "version": "0.4.0",
4
+ "description": "🧴 Sync your AI agent configurations and rules across platforms with ease",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "type": "module",
8
+ "bin": {
9
+ "gloo": "dist/cli/index.js"
10
+ },
11
+ "scripts": {
12
+ "build": "bun run typecheck && bun run lint && bun build src/index.ts --outdir dist --target node",
13
+ "build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node",
14
+ "build:binary": "bun build src/cli/index.ts --compile --outfile bin/gloo",
15
+ "build:binary:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile bin/gloo-linux",
16
+ "build:binary:macos": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile bin/gloo-macos",
17
+ "build:binary:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile bin/gloo-windows.exe",
18
+ "dev": "bun run src/cli/index.ts",
19
+ "test": "vitest",
20
+ "test:ui": "vitest --ui",
21
+ "test:run": "vitest run",
22
+ "test:coverage": "vitest run --coverage",
23
+ "typecheck": "tsc --noEmit",
24
+ "lint": "oxlint src tests",
25
+ "lint:fix": "oxlint src tests --fix",
26
+ "format": "oxlint src tests --fix",
27
+ "check": "bun run typecheck && bun run lint && bun run test:run",
28
+ "prepare": "bun run check && bun run build && bun run build:cli",
29
+ "prepublishOnly": "bun run check && bun run build && bun run build:cli",
30
+ "install:local": "bun run build:binary && sudo mv bin/gloo /usr/local/bin/"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "bin",
35
+ "README.md"
36
+ ],
37
+ "keywords": [
38
+ "ai",
39
+ "claude-code",
40
+ "cursor",
41
+ "codex",
42
+ "roo",
43
+ "cline",
44
+ "configuration",
45
+ "rules",
46
+ "sync",
47
+ "cli",
48
+ "mcp",
49
+ "model-context-protocol"
50
+ ],
51
+ "author": "Pedro Martins <hi@nikuscs.com>",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/nikuscs/gloo.git"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/nikuscs/gloo/issues"
59
+ },
60
+ "homepage": "https://github.com/nikuscs/gloo#readme",
61
+ "devDependencies": {
62
+ "@types/bun": "latest",
63
+ "@types/node": "^24.5.2",
64
+ "@vitest/ui": "^3.2.4",
65
+ "oxlint": "^1.17.0",
66
+ "vitest": "^3.2.4",
67
+ "bumpp": "^9.2.0"
68
+ },
69
+ "peerDependencies": {
70
+ "typescript": "^5"
71
+ },
72
+ "dependencies": {
73
+ "commander": "^14.0.1",
74
+ "zod": "^4.1.11"
75
+ }
76
+ }