-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.68 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "glooit",
"version": "0.6.7",
"description": "🧴 Sync your AI agent configurations and rules across platforms with ease",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"bin": {
"glooit": "dist/cli/index.js"
},
"scripts": {
"build": "bun run typecheck && bun run lint && bun build src/index.ts --outdir dist --target node && bun build src/cli/index.ts --outdir dist/cli --target node --external jiti && tsc --project tsconfig.build.json",
"build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node --external jiti",
"build:binary": "bun build src/cli/index.ts --compile --outfile bin/glooit",
"build:binary:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile bin/glooit-linux-x64",
"build:binary:macos-arm64": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile bin/glooit-darwin-arm64",
"build:binary:macos-x64": "bun build src/cli/index.ts --compile --target=bun-darwin-x64 --outfile bin/glooit-darwin-x64",
"build:binary:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile bin/glooit-windows-x64.exe",
"dev": "bun run src/cli/index.ts",
"test": "vitest --run",
"test:coverage": "vitest run --coverage",
"test:ui": "bun run test:coverage && vitest --ui",
"typecheck": "tsc --noEmit",
"lint": "oxlint src tests",
"lint:fix": "oxlint src tests --fix",
"format": "oxlint src tests --fix",
"check": "bun run typecheck && bun run lint && bun run test",
"taze": "bunx taze",
"release": "bun run check && npx bumpp && git push --follow-tags",
"prepublishOnly": "bun run check && bun run build",
"install:local": "bun run build:binary && sudo mv bin/glooit /usr/local/bin/"
},
"files": [
"dist",
"bin",
"README.md"
],
"keywords": [
"ai",
"claude-code",
"cursor",
"codex",
"roo",
"cline",
"configuration",
"rules",
"sync",
"cli",
"mcp",
"model-context-protocol"
],
"author": "Pedro Martins <hi@nikuscs.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nikuscs/glooit.git"
},
"bugs": {
"url": "https://github.com/nikuscs/glooit/issues"
},
"homepage": "https://github.com/nikuscs/glooit#readme",
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.5.2",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/ui": "^3.2.4",
"bumpp": "^10.2.3",
"oxlint": "^1.17.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"commander": "^14.0.1",
"jiti": "^2.6.0",
"package-manager-detector": "^1.3.0"
}
}