@hubhorizonllc/squick 1.3.0 → 2.0.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/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2026 Horizon LLC
189
+ Copyright 2026 Hub Horizon LLC
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
package/README.md CHANGED
@@ -8,7 +8,7 @@ This npm package is a thin wrapper that installs the right
8
8
  platform-specific binary via `optionalDependencies` and exposes it as
9
9
  the `squick` command. The unscoped name `squick` was already taken
10
10
  in 2015 by an unrelated, abandoned gulp/dustjs plugin, so the
11
- Horizon LLC distribution lives under the `@hubhorizonllc` scope. On
11
+ Hub Horizon LLC distribution lives under the `@hubhorizonllc` scope. On
12
12
  PyPI and crates.io the package is unscoped (`squick`, `squick-cli`).
13
13
 
14
14
  ## Install
@@ -48,12 +48,13 @@ formats for MCP servers and scripts).
48
48
  | macOS | arm64 | `@hubhorizonllc/squick-darwin-arm64` |
49
49
  | Windows | x86_64 | `@hubhorizonllc/squick-win32-x64` |
50
50
 
51
- ## Built by Horizon LLC
51
+ ## Built by Hub Horizon LLC
52
52
 
53
- We design and build custom AI developer tooling, MCP integrations, and
54
- agent infrastructure for engineering teams. [pixelhorizon.dev](https://pixelhorizon.dev).
53
+ Squick is part of [pixelhorizon.dev](https://pixelhorizon.dev), the
54
+ developer-tools line from Hub Horizon LLC. We design and build custom AI
55
+ tooling, MCP integrations, and agent infrastructure for engineering teams.
55
56
 
56
57
  ## License
57
58
 
58
- Apache-2.0. Copyright 2026 Horizon LLC.
59
- "Squick" is a trademark of Horizon LLC.
59
+ Apache-2.0. Copyright 2026 Hub Horizon LLC.
60
+ "Squick" is a trademark of Hub Horizon LLC.
package/bin/squick.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2026 Horizon LLC
2
+ // Copyright 2026 Hub Horizon LLC
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
  //
5
5
  // Locates the platform-specific Squick binary installed via
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@hubhorizonllc/squick",
3
- "version": "1.3.0",
3
+ "version": "2.0.0",
4
4
  "description": "Pre-computed LLM context for AI coding agents.",
5
5
  "license": "Apache-2.0",
6
- "author": "Horizon LLC",
6
+ "author": "Hub Horizon LLC",
7
7
  "homepage": "https://pixelhorizon.dev",
8
8
  "repository": {
9
9
  "type": "git",
@@ -29,10 +29,10 @@
29
29
  "node": ">=18"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@hubhorizonllc/squick-linux-x64": "1.3.0",
33
- "@hubhorizonllc/squick-linux-arm64": "1.3.0",
34
- "@hubhorizonllc/squick-darwin-x64": "1.3.0",
35
- "@hubhorizonllc/squick-darwin-arm64": "1.3.0",
36
- "@hubhorizonllc/squick-win32-x64": "1.3.0"
32
+ "@hubhorizonllc/squick-linux-x64": "2.0.0",
33
+ "@hubhorizonllc/squick-linux-arm64": "2.0.0",
34
+ "@hubhorizonllc/squick-darwin-x64": "2.0.0",
35
+ "@hubhorizonllc/squick-darwin-arm64": "2.0.0",
36
+ "@hubhorizonllc/squick-win32-x64": "2.0.0"
37
37
  }
38
38
  }