glooit 0.5.3 → 0.5.4
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/bin/glooit-linux +0 -0
- package/bin/glooit-macos +0 -0
- package/bin/glooit-windows.exe +0 -0
- package/dist/cli/index.js +18 -2
- package/dist/index.js +3377 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glooit",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "🧴 Sync your AI agent configurations and rules across platforms with ease",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"glooit": "dist/cli/index.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
-
"build": "bun run typecheck && bun run lint && bun build src/index.ts --outdir dist --target node && tsc --project tsconfig.build.json",
|
|
13
|
-
"build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node",
|
|
12
|
+
"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",
|
|
13
|
+
"build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node --external jiti",
|
|
14
14
|
"build:binary": "bun build src/cli/index.ts --compile --outfile bin/glooit",
|
|
15
15
|
"build:binary:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile bin/glooit-linux",
|
|
16
16
|
"build:binary:macos": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile bin/glooit-macos",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"format": "oxlint src tests --fix",
|
|
25
25
|
"check": "bun run typecheck && bun run lint && bun run test",
|
|
26
26
|
"taze": "bunx taze",
|
|
27
|
-
"prepublishOnly": "bun run check && bun run build
|
|
27
|
+
"prepublishOnly": "bun run check && bun run build",
|
|
28
28
|
"install:local": "bun run build:binary && sudo mv bin/glooit /usr/local/bin/"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"commander": "^14.0.1",
|
|
72
|
+
"jiti": "^2.6.0",
|
|
72
73
|
"package-manager-detector": "^1.3.0"
|
|
73
74
|
}
|
|
74
75
|
}
|