Files
javascript-client-sdk/package.json
T
Jacob Schlecht 97d924bb3a feat: Add the ability to parse markdown and replace tags asynchronously, and fetch the missing users and channels. (#131)
* chore: Update ulid to v3 to allow use in service workers

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

* feat: Add async message parsing that calls fetch for service workers.

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

* feat: add custom emoji text replacements to the markdown parser

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

* feat: dedupe regex matches, wait for all requests at once

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

* fix: run lint for Client.ts

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

* refactor: Wait for all promises at once

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

* Using spread operator

Signed-off-by: Christopher Hultin <chris.hultin@gmail.com>

* fix: run linter

This commit was made without the use of generative AI.

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>

---------

Signed-off-by: Jacob Schlecht <dadadah@echoha.us>
Signed-off-by: Christopher Hultin <chris.hultin@gmail.com>
Co-authored-by: Christopher Hultin <chris.hultin@gmail.com>
2026-03-02 08:26:31 -07:00

50 lines
1.6 KiB
JSON

{
"name": "stoat.js",
"version": "7.3.7",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"types": "lib/index.d.ts",
"repository": "https://github.com/stoatchat/javascript-client-sdk",
"author": "insert <insrt.uk>",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:watch": "tsc-watch --onSuccess \"node .\"",
"lint": "eslint --ext .ts,.tsx src/",
"lint:fix": "eslint --fix --ext .ts,.tsx src/",
"typecheck": "tsc --noEmit",
"docs": "typedoc --plugin @mxssfd/typedoc-theme --theme my-theme --readme README.md src/",
"fmt": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"fmt:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'"
},
"files": [
"README.md",
"lib"
],
"description": "Library for interacting with the Stoat API",
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"dependencies": {
"@solid-primitives/map": "^0.7.1",
"@solid-primitives/set": "^0.7.1",
"@vladfrangu/async_event_emitter": "^2.4.6",
"json-with-bigint": "^3.4.4",
"solid-js": "^1.9.6",
"stoat-api": "0.8.9-4",
"ulid": "^3.0.2"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.7",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.15.17",
"eslint": "^9.26.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-solid": "^0.14.5",
"prettier": "^3.5.3",
"typedoc": "^0.27.9",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
}
}