Skip to content

Commit 6c14ca1

Browse files
chore: bump to 1.0.0 and update README with scoped package name
πŸ€– Generated with Mister Maluco Co-Authored-By: MisterMal <teskeslab@lucasteske.dev>
1 parent 46b07a6 commit 6c14ca1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Works in Node.js and browsers (no dependencies, uses Web APIs: `ArrayBuffer`, `D
1212
## Install
1313

1414
```bash
15-
npm install struct.js
15+
npm install @teskevirtualsystem/struct.js
1616
```
1717

1818
## Usage
1919

2020
```javascript
21-
import { pack, unpack, calcSize } from "struct.js";
21+
import { pack, unpack, calcSize } from "@teskevirtualsystem/struct.js";
2222

2323
// Pack an unsigned int (1234) β€” returns ArrayBuffer
2424
const buf = pack("I", 1234);

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teskevirtualsystem/struct.js",
3-
"version": "0.0.0-staged.1",
3+
"version": "1.0.0",
44
"description": "Python struct module port to JavaScript β€” pack/unpack binary data using format strings",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
Β (0)