@stoatx/client 0.1.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/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@stoatx/client",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A client library for the Stoatx command handler, providing utilities and integrations for building command-based applications within the Stoat ecosystem.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/stoatx-ts/stoatx.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/stoatx-ts/stoatx/issues"
12
+ },
13
+ "homepage": "https://github.com/stoatx-ts/stoatx#readme",
14
+ "main": "./dist/index.cjs",
15
+ "module": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.js",
21
+ "require": "./dist/index.cjs"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "license": "MIT",
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "dependencies": {
32
+ "events": "^3.3.0",
33
+ "undici": "^6.0.0",
34
+ "ws": "^8.16.0",
35
+ "ulid": "^3.0.2"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^20.0.0",
39
+ "tsup": "^8.0.0",
40
+ "@types/ws": "^8.5.0",
41
+ "typescript": "^5.0.0",
42
+ "prettier": "^3.8.1"
43
+ },
44
+ "scripts": {
45
+ "build": "tsup src/index.ts --format cjs,esm --dts --external ws,undici --clean --tsconfig tsconfig.build.json",
46
+ "dev": "tsup src/index.ts --format cjs,esm --watch --dts --external ws,undici --tsconfig tsconfig.build.json",
47
+ "lint": "eslint src/**/*.ts"
48
+ }
49
+ }