@jacobhumston/roblox-openapi-ts 1.0.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/dist/types.js ADDED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@jacobhumston/roblox-openapi-ts",
3
+ "version": "1.0.0",
4
+ "description": "An automatically updated Roblox API client based on their OpenAPI documentation.",
5
+ "keywords": [
6
+ "roblox",
7
+ "openapi",
8
+ "typescript"
9
+ ],
10
+ "type": "module",
11
+ "module": "dist/index.js",
12
+ "types": "dist/index.d.ts",
13
+ "license": "MIT",
14
+ "homepage": "https://github.com/jacobhumston/flags.ts",
15
+ "repository": {
16
+ "url": "https://github.com/jacobhumston/flags.ts"
17
+ },
18
+ "scripts": {
19
+ "format": "bun x prettier --write --cache .",
20
+ "compile": "bun run tools/build.ts && del dist/ && bun x tsc && bun run tools/bundle.ts",
21
+ "docs": "del docs/ && bun x typedoc src/index.ts --options typedoc.json && bun x prettier --write --ignore-path null docs/"
22
+ },
23
+ "devDependencies": {
24
+ "@ianvs/prettier-plugin-sort-imports": "^4.7.1",
25
+ "@types/bun": "^1.3.10",
26
+ "@types/node": "^25.3.5",
27
+ "del-cli": "^7.0.0",
28
+ "dts-bundle-generator": "^9.5.1",
29
+ "openapi-typescript": "^7.13.0",
30
+ "prettier": "^3.8.1",
31
+ "typedoc": "^0.28.17",
32
+ "typedoc-plugin-mdn-links": "^5.1.1",
33
+ "typedoc-rhineai-theme": "^1.2.0",
34
+ "typescript": "^6.0.3"
35
+ },
36
+ "files": [
37
+ "dist/",
38
+ "LICENSE",
39
+ "README.md",
40
+ "package.json"
41
+ ],
42
+ "dependencies": {
43
+ "openapi-fetch": "^0.17.0"
44
+ }
45
+ }