Dataset Preview
Viewer
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed
Error code:   DatasetGenerationError
Exception:    DatasetGenerationError
Message:      An error occurred while generating the dataset
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 2011, in _prepare_split_single
                  writer.write_table(table)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/arrow_writer.py", line 585, in write_table
                  pa_table = table_cast(pa_table, self._schema)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2302, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2261, in cast_table_to_schema
                  arrays = [cast_array_to_feature(table[name], feature) for name, feature in features.items()]
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2261, in <listcomp>
                  arrays = [cast_array_to_feature(table[name], feature) for name, feature in features.items()]
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1802, in wrapper
                  return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1802, in <listcomp>
                  return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2122, in cast_array_to_feature
                  raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
              TypeError: Couldn't cast array of type
              struct<build: string, build:type: string, release-build: string, fmt: string, lint: string, test:unit-coverage: string, test:unit: string, test:deno-unit: string, test:unit:watch: string, test:integration: string, test:type: string, test:test-type: string>
              to
              {'build': Value(dtype='string', id=None), 'build:type': Value(dtype='string', id=None), 'release-build': Value(dtype='string', id=None), 'fmt': Value(dtype='string', id=None), 'lint': Value(dtype='string', id=None), 'test:unit-coverage': Value(dtype='string', id=None), 'test:unit': Value(dtype='string', id=None), 'test:deno-unit': Value(dtype='string', id=None), 'test:e2e': Value(dtype='string', id=None), 'test:unit:watch': Value(dtype='string', id=None), 'test:type': Value(dtype='string', id=None), 'test:test-type': Value(dtype='string', id=None)}
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1321, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 935, in convert_to_parquet
                  builder.download_and_prepare(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1027, in download_and_prepare
                  self._download_and_prepare(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1122, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1882, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 2038, in _prepare_split_single
                  raise DatasetGenerationError("An error occurred while generating the dataset") from e
              datasets.exceptions.DatasetGenerationError: An error occurred while generating the dataset

Need help to make the dataset viewer work? Open a discussion for direct support.

name
string
version
string
main
string
exports
dict
types
string
type
string
license
string
repository
dict
scripts
dict
dependencies
dict
devDependencies
dict
@discordeno/bot
19.0.0-next.52b66b6
./dist/esm/index.js
{ "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }
./dist/types/index.d.ts
module
Apache-2.0
{ "type": "git", "url": "https://github.com/discordeno/discordeno.git" }
{ "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "eslint --fix \"src/**/*.ts*\"", "lint": "eslint \"src/**/*.ts*\"", "test:unit-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno", "test:deno-unit": "swc tests --strip-leading-paths --delete-dir-on-start --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist/unit", "test:e2e": "c8 --r lcov mocha --no-warnings --jobs 1 --t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tsconfig.test.json" }
{ "@discordeno/gateway": "19.0.0-next.52b66b6", "@discordeno/rest": "19.0.0-next.52b66b6", "@discordeno/types": "19.0.0-next.52b66b6", "@discordeno/utils": "19.0.0-next.52b66b6" }
{ "@swc/cli": "^0.3.9", "@swc/core": "^1.4.2", "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.11.25", "@types/sinon": "^17.0.3", "c8": "^9.1.0", "chai": "^5.0.3", "eslint": "^8.57.0", "eslint-config-discordeno": "*", "mocha": "^10.3.0", "sinon": "^17.0.1", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "5.3.3" }
@discordeno/gateway
19.0.0-next.52b66b6
./dist/esm/index.js
{ "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }
./dist/types/index.d.ts
module
Apache-2.0
{ "type": "git", "url": "https://github.com/discordeno/discordeno.git" }
{ "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "eslint --fix \"src/**/*.ts*\"", "lint": "eslint \"src/**/*.ts*\"", "test:unit-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway", "test:deno-unit": "swc --strip-leading-paths tests --delete-dir-on-start --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist/unit", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'", "test:integration": "c8 --r lcov mocha --no-warnings 'tests/integration/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tsconfig.test.json" }
{ "@discordeno/types": "19.0.0-next.52b66b6", "@discordeno/utils": "19.0.0-next.52b66b6", "ws": "^8.16.0" }
{ "@swc/cli": "^0.3.9", "@swc/core": "^1.4.2", "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.11.25", "@types/sinon": "^17.0.3", "@types/ws": "^8.5.10", "c8": "^9.1.0", "chai": "^5.0.3", "eslint": "^8.57.0", "eslint-config-discordeno": "*", "mocha": "^10.3.0", "sinon": "^17.0.1", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "5.3.3", "uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28" }
@discordeno/rest
19.0.0-next.52b66b6
./dist/esm/index.js
{ "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }
./dist/types/index.d.ts
module
Apache-2.0
{ "type": "git", "url": "https://github.com/discordeno/discordeno.git" }
{ "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "eslint --fix \"src/**/*.ts*\"", "lint": "eslint \"src/**/*.ts*\"", "test:unit-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest", "test:deno-unit": "swc tests --strip-leading-paths --delete-dir-on-start --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist/unit", "test:bun-unit": "node ../../scripts/fixBunTestExtension.js && bun test bunTestsDist/unit", "test:e2e": "c8 --r lcov mocha --exit --no-warnings --jobs 1 --t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tsconfig.test.json" }
{ "@discordeno/types": "19.0.0-next.52b66b6", "@discordeno/utils": "19.0.0-next.52b66b6", "dotenv": "^16.4.5" }
{ "@swc/cli": "^0.3.9", "@swc/core": "^1.4.2", "@types/chai": "^4.3.11", "@types/chai-as-promised": "^7.1.8", "@types/mocha": "^10.0.6", "@types/node": "^20.11.25", "@types/sinon": "^17.0.3", "c8": "^9.1.0", "chai": "^5.0.3", "chai-as-promised": "^7.1.1", "eslint": "^8.57.0", "eslint-config-discordeno": "*", "mocha": "^10.3.0", "sinon": "^17.0.1", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "5.3.3", "why-is-node-running": "^2.2.2" }
@discordeno/types
19.0.0-next.52b66b6
./dist/esm/index.js
{ "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }
./dist/types/index.d.ts
module
Apache-2.0
{ "type": "git", "url": "https://github.com/discordeno/discordeno.git" }
{ "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "eslint --fix \"src/**/*.ts*\"", "lint": "eslint \"src/**/*.ts*\"", "test:unit-coverage": "c8 mocha --no-warnings 'tests/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js utils", "test:deno-unit": "swc tests --strip-leading-paths --delete-dir-on-start -C jsc.minify.mangle=false --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'", "test:type": "tsc --noEmit" }
null
{ "@swc/cli": "^0.3.9", "@swc/core": "^1.4.2", "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.11.25", "@types/sinon": "^17.0.3", "c8": "^9.1.0", "chai": "^5.0.3", "eslint": "^8.57.0", "eslint-config-discordeno": "*", "mocha": "^10.3.0", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "5.3.3" }
@discordeno/utils
19.0.0-next.52b66b6
./dist/esm/index.js
{ "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }
./dist/types/index.d.ts
module
Apache-2.0
{ "type": "git", "url": "https://github.com/discordeno/discordeno.git" }
{ "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --skipDefaultLibCheck --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "eslint --fix \"src/**/*.ts*\"", "lint": "eslint \"src/**/*.ts*\"", "test:unit-coverage": "c8 mocha --no-warnings 'tests/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js utils", "test:deno-unit": "swc tests --strip-leading-paths --delete-dir-on-start -C jsc.minify.mangle=false --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist", "test:bun-unit": "node ../../scripts/fixBunTestExtension.js && bun test bunTestsDist", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tsconfig.test.json" }
{ "@discordeno/types": "19.0.0-next.52b66b6", "tweetnacl": "^1.0.3" }
{ "@swc/cli": "^0.3.9", "@swc/core": "^1.4.2", "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.11.25", "@types/sinon": "^17.0.3", "c8": "^9.1.0", "chai": "^5.0.3", "eslint": "^8.57.0", "eslint-config-discordeno": "*", "mocha": "^10.3.0", "sinon": "^17.0.1", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "5.3.3" }

No dataset card yet

New: Create and edit this dataset card directly on the website!

Contribute a Dataset Card
Downloads last month
0
Add dataset card