moon-inferno 0.1.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Moon-Inferno Contributors
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/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # moon-inferno
2
+
3
+ <p align="center">
4
+ <h1 align="center">moon-inferno</h1>
5
+ <p align="center"><strong>All-in-One Package for Moon-Inferno: Expressive, Accessibility-First React UI Framework</strong></p>
6
+ <p align="center"><em>Created by Biagio Scaglia</em></p>
7
+ </p>
8
+
9
+ [![NPM Version](https://img.shields.io/npm/v/moon-inferno?color=FF4D00)](https://www.npmjs.com/package/moon-inferno)
10
+ [![License](https://img.shields.io/badge/license-MIT-00FF66.svg)](https://opensource.org/licenses/MIT)
11
+
12
+ > Install everything with a single command: `npm install moon-inferno`
13
+
14
+ ---
15
+
16
+ ## ⚡ Quickstart
17
+
18
+ ### Installation
19
+
20
+ ```bash
21
+ npm install moon-inferno
22
+ # or
23
+ pnpm add moon-inferno
24
+ ```
25
+
26
+ ### Usage
27
+
28
+ ```tsx
29
+ import 'moon-inferno/styles.css';
30
+ import {
31
+ MoonProvider,
32
+ MoonTypewriterDialogue,
33
+ MoonHealthMeter,
34
+ MoonRPGGrid,
35
+ FlameIcon
36
+ } from 'moon-inferno';
37
+
38
+ export default function App() {
39
+ return (
40
+ <MoonProvider defaultTheme="moon-inferno">
41
+ <MoonTypewriterDialogue
42
+ speaker="COMMANDER"
43
+ avatar={<FlameIcon size={20} color="#FF4D00" />}
44
+ text="All-in-one moon-inferno bundle active!"
45
+ />
46
+ <MoonHealthMeter type="health" value={95} max={100} label="HP" />
47
+ <MoonRPGGrid columns={5} totalSlots={10} />
48
+ </MoonProvider>
49
+ );
50
+ }
51
+ ```
52
+
53
+ ---
54
+
55
+ ## 📖 Official Documentation
56
+
57
+ - **Live Playground & Website**: [https://biagio-scaglia.github.io/moon-inferno/](https://biagio-scaglia.github.io/moon-inferno/)
58
+ - **GitHub Repository**: [https://github.com/biagio-scaglia/moon-inferno](https://github.com/biagio-scaglia/moon-inferno)
59
+
60
+ Distributed under the MIT License. Created by [Biagio Scaglia](https://github.com/biagio-scaglia).
@@ -0,0 +1,2 @@
1
+ export * from '@moon-inferno/react';
2
+ export * from '@moon-inferno/icons';
@@ -0,0 +1,2 @@
1
+ export * from '@moon-inferno/react';
2
+ export * from '@moon-inferno/icons';
package/dist/index.js ADDED
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from))
9
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+
17
+ // src/index.ts
18
+ var index_exports = {};
19
+ module.exports = __toCommonJS(index_exports);
20
+ __reExport(index_exports, require("@moon-inferno/react"), module.exports);
21
+ __reExport(index_exports, require("@moon-inferno/icons"), module.exports);
22
+ var import_styles = require("@moon-inferno/react/styles.css");
23
+ var import_styles2 = require("@moon-inferno/icons/styles.css");
24
+ // Annotate the CommonJS export names for ESM import in node:
25
+ 0 && (module.exports = {
26
+ ...require("@moon-inferno/react"),
27
+ ...require("@moon-inferno/icons")
28
+ });
package/dist/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ // src/index.ts
2
+ export * from "@moon-inferno/react";
3
+ export * from "@moon-inferno/icons";
4
+ import "@moon-inferno/react/styles.css";
5
+ import "@moon-inferno/icons/styles.css";
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "moon-inferno",
3
+ "version": "0.1.0",
4
+ "description": "All-in-one bundle for Moon-Inferno: Expressive, accessibility-first React UI framework for retro, Y2K, CRT, cyberpunk, gaming, and Web3 applications.",
5
+ "license": "MIT",
6
+ "author": "Biagio Scaglia",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/biagio-scaglia/moon-inferno.git",
10
+ "directory": "packages/moon-inferno"
11
+ },
12
+ "main": "dist/index.cjs",
13
+ "module": "dist/index.js",
14
+ "types": "dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js",
19
+ "require": "./dist/index.cjs"
20
+ },
21
+ "./styles.css": "./dist/index.css"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
28
+ "dependencies": {
29
+ "@moon-inferno/icons": "0.1.5",
30
+ "@moon-inferno/core": "0.1.4",
31
+ "@moon-inferno/react": "0.2.1",
32
+ "@moon-inferno/themes": "0.1.4"
33
+ },
34
+ "peerDependencies": {
35
+ "react": ">=18.0.0",
36
+ "react-dom": ">=18.0.0"
37
+ },
38
+ "keywords": [
39
+ "moon-inferno",
40
+ "react",
41
+ "ui-framework",
42
+ "accessibility",
43
+ "wcag-2.1-aa",
44
+ "cyberpunk-ui",
45
+ "retro-web",
46
+ "y2k-ui",
47
+ "pixel-art",
48
+ "all-in-one"
49
+ ],
50
+ "scripts": {
51
+ "build": "tsup src/index.ts --format esm,cjs --dts --external react,react-dom,@moon-inferno/react,@moon-inferno/icons,@moon-inferno/themes,@moon-inferno/core --target es2020",
52
+ "typecheck": "tsc --noEmit"
53
+ }
54
+ }