@zthun/romulator-scrape 1.8.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/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [1.8.0](https://github.com/zthun/romulator/compare/v1.7.1...v1.8.0) (2025-10-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * romulator scrape is the official scraper that retrieves media and info for games + systems ([ebb73eb](https://github.com/zthun/romulator/commit/ebb73eb8b9bd3fbccf6deb7efb06f2e4454660db))
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright (c) 2024 Anthony Bonta
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/cli.cjs ADDED
@@ -0,0 +1,4 @@
1
+ 'use strict';
2
+
3
+ console.log("Romulator Scraper");
4
+ //# sourceMappingURL=cli.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.cjs","sources":["../src/cli.mts"],"sourcesContent":["console.log(\"Romulator Scraper\");\n"],"names":["console","log"],"mappings":";;AAAAA,OAAAA,CAAQC,GAAG,CAAC,mBAAA,CAAA;;"}
package/dist/cli.d.mts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/dist/cli.js ADDED
@@ -0,0 +1,2 @@
1
+ console.log("Romulator Scraper");
2
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sources":["../src/cli.mts"],"sourcesContent":["console.log(\"Romulator Scraper\");\n"],"names":["console","log"],"mappings":"AAAAA,OAAAA,CAAQC,GAAG,CAAC,mBAAA,CAAA"}
package/dist/index.cjs ADDED
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
+
5
+ const Placeholder = "placeholder";
6
+
7
+ exports.Placeholder = Placeholder;
8
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs","sources":["../src/index.mts"],"sourcesContent":["export const Placeholder = \"placeholder\";\n"],"names":["Placeholder"],"mappings":";;;;AAAO,MAAMA,cAAc;;;;"}
@@ -0,0 +1 @@
1
+ export declare const Placeholder = "placeholder";
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ const Placeholder = "placeholder";
2
+
3
+ export { Placeholder };
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/index.mts"],"sourcesContent":["export const Placeholder = \"placeholder\";\n"],"names":["Placeholder"],"mappings":"AAAO,MAAMA,cAAc;;;;"}
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@zthun/romulator-scrape",
3
+ "version": "1.8.0",
4
+ "description": "Romulator scraper that can grab info and media from scrape sources",
5
+ "author": "Anthony Bonta",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/zthun/romulator",
11
+ "directory": "packages/romulator-scrape"
12
+ },
13
+ "scripts": {
14
+ "build": "vite build"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "dependencies": {
20
+ "@zthun/romulator-client": "^1.8.0"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^24.9.1",
24
+ "@zthun/janitor-build-config": "^19.4.0",
25
+ "history": "^5.3.0",
26
+ "lodash-es": "^4.17.21",
27
+ "typescript": "^5.9.3",
28
+ "vite": "^7.1.11",
29
+ "vitest": "^3.2.4",
30
+ "vitest-mock-extended": "^3.1.0"
31
+ },
32
+ "gitHead": "8226acacacdd44e65e7f63564c89118e727a66d8"
33
+ }
package/src/cli.mts ADDED
@@ -0,0 +1 @@
1
+ console.log("Romulator Scraper");
package/src/index.mts ADDED
@@ -0,0 +1 @@
1
+ export const Placeholder = "placeholder";
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../.config/.tsconfig.json",
3
+ "compilerOptions": {
4
+ "baseUrl": ".",
5
+ "paths": {
6
+ "@zthun/romulator-client": ["../romulator-client/src/index.mts"]
7
+ }
8
+ },
9
+ "include": ["./src/**/*.ts", "./src/**/*.mts", "./src/**/*.tsx"]
10
+ }
@@ -0,0 +1,5 @@
1
+ import { ZViteConfigBuilder } from "@zthun/janitor-build-config/vite";
2
+ import { defineConfig } from "vite";
3
+
4
+ const config = new ZViteConfigBuilder().cli().lodash().build();
5
+ export default defineConfig(config);
@@ -0,0 +1,9 @@
1
+ import {
2
+ ZViteConfigBuilder,
3
+ ZViteTestBuilder,
4
+ } from "@zthun/janitor-build-config/vite";
5
+ import { defineConfig } from "vite";
6
+
7
+ const test = new ZViteTestBuilder().node().build();
8
+ const config = new ZViteConfigBuilder().test(test).build();
9
+ export default defineConfig(config);