Commit b00164aa authored by Grant's avatar Grant
Browse files

reformat

parent 0e184797
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
nodeLinker: node-modules
npmPublishRegistry: https://sc07.dev/api/v4/projects/83/packages/npm/

npmPublishRegistry: "https://sc07.dev/api/v4/projects/83/packages/npm/"

npmScopes:
  sc07:
    npmRegistryServer: https://sc07.dev/api/v4/groups/3/-/packages/npm
 No newline at end of file
    npmRegistryServer: "https://sc07.dev/api/v4/groups/3/-/packages/npm"

LICENSE

0 → 100644
+7 −0
Original line number Diff line number Diff line
Copyright © 2025 sc07 LLC (https://sc07.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 No newline at end of file
+6 −1
Original line number Diff line number Diff line
# matrix-types
# @sc07/matrix-types
Matrix spec types as Typescript

Extracted from [sc07/matrix-discord-bridge](https://sc07.dev/sc07/matrix-discord-bridge)

Licensed under MIT
 No newline at end of file
+19 −2
Original line number Diff line number Diff line
{
  "name": "@sc07/matrix-types",
  "version": "1.0.0",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://sc07.dev/sc07/matrix-types.git"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
@@ -7,16 +13,27 @@
      "default": "./dist/index.js",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./events": {
      "default": "./dist/events/index.js",
      "import": "./dist/events/index.js",
      "types": "./dist/events/index.d.ts"
    },
    "./components": {
      "default": "./dist/components/index.js",
      "import": "./dist/components/index.js",
      "types": "./dist/components/index.d.ts"
    }
  },
  "files": [
    "./dist",
    "./src"
  ],
  "version": "1.0.0",
  "packageManager": "yarn@4.5.2",
  "packageManager": "yarn@4.12.0",
  "devDependencies": {
    "@tsconfig/recommended": "^1.0.13",
    "@types/node": "^25.0.3",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "scripts": {
+5 −0
Original line number Diff line number Diff line
export type AudioInfo = {
  mimetype?: string;
  duration?: string; // milliseconds
  size?: number; // bytes
};
Loading