New:Socket for Asana Is Now Available.Learn more
Get Started

@0disoft/laqu

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@0disoft/laqu - npm Package Compare versions

Comparing version
1.0.1
to
1.0.2
+21
LICENSE
MIT License
Copyright (c) 2026 0disoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+5
-1
{
"name": "@0disoft/laqu",
"version": "1.0.1",
"version": "1.0.2",
"description": "Reliable terminal progress and live CLI rendering primitives for TypeScript.",

@@ -18,2 +18,3 @@ "keywords": [

},
"license": "MIT",
"repository": {

@@ -49,2 +50,5 @@ "type": "git",

},
"publishConfig": {
"access": "public"
},
"scripts": {

@@ -51,0 +55,0 @@ "build": "bun run clean && tsc -p tsconfig.build.json",

@@ -177,1 +177,12 @@ # laqu

`bun run example:basic` builds the package and runs a small live progress demo. Terminal scrollback keeps the final frame; watch the command while it runs to see the bar animate in place.
## Release
GitHub Actions publishes npm releases from maintainer-created version tags. The tag must match `package.json` exactly, for example `v1.0.2` for version `1.0.2`.
```sh
git tag -a v1.0.2 -m "v1.0.2"
git push origin main v1.0.2
```
The npm package must define a Trusted Publisher connection for GitHub Actions with organization/user `0disoft`, repository `laqu`, workflow filename `release.yml`, no environment name, and `npm publish` allowed. On a matching tag push, the workflow installs dependencies, checks the package, runs a dry pack verification, publishes `@0disoft/laqu` to npm through OIDC, and creates a GitHub Release with generated notes.