mirror of
https://github.com/stoatchat/javascript-client-sdk.git
synced 2026-07-18 16:34:27 -04:00
57 lines
1.8 KiB
JSON
57 lines
1.8 KiB
JSON
{
|
|
"name": "revolt.js",
|
|
"version": "7.0.2",
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/esm/index.d.ts",
|
|
"repository": "https://github.com/revoltchat/revolt.js",
|
|
"author": "Paul Makles <insrt.uk>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "pnpm run build:esm && pnpm run build:cjs",
|
|
"build:esm": "tsc && cp package-esm.json lib/esm/package.json",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
"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 Revolt API.",
|
|
"packageManager": "pnpm@8.6.5",
|
|
"dependencies": {
|
|
"@mxssfd/typedoc-theme": "^1.1.3",
|
|
"@solid-primitives/map": "^0.4.11",
|
|
"@solid-primitives/set": "^0.4.11",
|
|
"eventemitter3": "^5.0.1",
|
|
"isomorphic-ws": "^5.0.0",
|
|
"long": "^5.2.3",
|
|
"revolt-api": "0.7.11",
|
|
"solid-js": "^1.8.15",
|
|
"typedoc": "^0.24.8",
|
|
"ulid": "^2.3.0",
|
|
"ws": "^8.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/node": "^18.19.24",
|
|
"@types/ws": "^8.5.10",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^8.10.0",
|
|
"eslint-plugin-solid": "^0.12.1",
|
|
"eslint-plugin-spellcheck": "^0.0.20",
|
|
"prettier": "^2.8.8",
|
|
"tsc-watch": "^6.0.4",
|
|
"typed-emitter": "^2.1.0",
|
|
"typescript": "^5.4.2"
|
|
}
|
|
} |