Skip to content

Commit 4436d88

Browse files
committed
fix: set correct organization name
1 parent 8d403ff commit 4436d88

20 files changed

Lines changed: 45 additions & 46 deletions

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ wsc/
2828
├── bindings/ ← language bindings (wire format only, no I/O)
2929
│ ├── README.md
3030
│ └── js/
31-
│ └── sdk/ ← @asls-org/wsc-sdk
31+
│ └── sdk/ ← @asls/wsc-sdk
3232
3333
└── implementations/ ← runnable clients and gateways
3434
├── README.md

bindings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ A **binding** is a language-specific, I/O-free implementation of the WSC wire fo
3434

3535
## JavaScript Binding — Overview
3636

37-
The JS binding lives at `bindings/js/sdk/` and is published as `@asls-org/wsc-sdk`. It exposes the full WSC surface as ES module classes.
37+
The JS binding lives at `bindings/js/sdk/` and is published as `@asls/wsc-sdk`. It exposes the full WSC surface as ES module classes.
3838

3939
### Public API
4040

bindings/js/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "1.0.0",
3-
"name": "@asls-org/wsc-sdk",
3+
"name": "@asls/wsc-sdk",
44
"type": "module",
55
"private": false,
66
"publishConfig": {

implementations/js/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Getting-started guide for the JavaScript client and gateway.
44

5-
**Binding:** [`bindings/js/sdk/`](../../bindings/js/sdk/) (`@asls-org/wsc-sdk`)
5+
**Binding:** [`bindings/js/sdk/`](../../bindings/js/sdk/) (`@asls/wsc-sdk`)
66
**Protocol version:** 1.1.0
77
**Runtime:** Node.js ≥ 20 (gateway) · Any modern browser or Node.js ≥ 20 (client)
88

@@ -121,7 +121,7 @@ Import the client and the SDK binding:
121121

122122
```js
123123
import { WscClient, WSC_REMOTE_STATE, KEEPALIVE_INTERVAL } from './src/main.js';
124-
import { WscPacket, WscTransport, WscFlags, WscAddress } from '@asls-org/wsc-sdk';
124+
import { WscPacket, WscTransport, WscFlags, WscAddress } from '@asls/wsc-sdk';
125125
```
126126

127127
### 1. Connect to a gateway

implementations/js/client/example/wsc.client.example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
WscTransport,
1414
WscFlags,
1515
WscAddress,
16-
} from '@asls-org/wsc-sdk';
16+
} from '@asls/wsc-sdk';
1717
import {
1818
WscClient, WSC_REMOTE_STATE, DEBUGGER_LOG_TYPE, KEEPALIVE_INTERVAL,
1919
} from '../src/main.js';

implementations/js/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "1.0.0",
3-
"name": "@asls-org/wsc-client",
3+
"name": "@asls/wsc-client",
44
"type": "module",
55
"private": false,
66
"publishConfig": {
@@ -29,7 +29,7 @@
2929
"author": "Timé Kadel",
3030
"license": "GPL-3.0-only",
3131
"dependencies": {
32-
"@asls-org/wsc-sdk": "*"
32+
"@asls/wsc-sdk": "*"
3333
},
3434
"devDependencies": {
3535
"vite": "^7.3.1"

implementations/js/client/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable max-classes-per-file */
2-
import { WscFlags, WscPacket } from '@asls-org/wsc-sdk';
2+
import { WscFlags, WscPacket } from '@asls/wsc-sdk';
33

44
/**
55
* WSC DMX DataChannel name

implementations/js/jsconfig.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"target": "ES2022",
55
"module": "ESNext",
66
"paths": {
7-
"@asls-org/wsc-sdk": ["./bindings/js/sdk/src/main.js"],
8-
"@asls-org/wsc-sdk/*": ["./bindings/js/sdk/src/*"],
9-
"@asls-org/wsc-server": ["./implementations/js/server/src/main.js"],
10-
"@asls-org/wsc-server/*": ["./implementations/js/server/src/*"],
11-
"@asls-org/wsc-client": ["./implementations/js/client/src/main.js"],
12-
"@asls-org/wsc-client/*": ["./implementations/js/client/src/*"]
7+
"@asls/wsc-sdk": ["./bindings/js/sdk/src/main.js"],
8+
"@asls/wsc-sdk/*": ["./bindings/js/sdk/src/*"],
9+
"@asls/wsc-server": ["./implementations/js/server/src/main.js"],
10+
"@asls/wsc-server/*": ["./implementations/js/server/src/*"],
11+
"@asls/wsc-client": ["./implementations/js/client/src/main.js"],
12+
"@asls/wsc-client/*": ["./implementations/js/client/src/*"]
1313
}
1414
},
1515
"include": ["./**/*.js"]

implementations/js/server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "1.0.0",
3-
"name": "@asls-org/wsc-server",
3+
"name": "@asls/wsc-server",
44
"type": "module",
55
"private": true,
66
"publishConfig": {
@@ -24,7 +24,7 @@
2424
"author": "Timé Kadel",
2525
"license": "GPL-3.0-only",
2626
"dependencies": {
27-
"@asls-org/wsc-sdk": "*",
27+
"@asls/wsc-sdk": "*",
2828
"@roamhq/wrtc": "^0.8.0",
2929
"dotenv": "^17.2.4",
3030
"systeminformation": "^5.31.5",

0 commit comments

Comments
 (0)