react-better-html 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.
@@ -0,0 +1 @@
1
+ export declare const testPackage: () => string;
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.testPackage = void 0;
4
+ const testPackage = () => {
5
+ return "Hello World!";
6
+ };
7
+ exports.testPackage = testPackage;
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "react-better-html",
3
+ "version": "1.0.0",
4
+ "description": "A component library for react that is as close to plane html as possible",
5
+ "main": "dist/index.js",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "scripts": {
16
+ "build": "tsc"
17
+ },
18
+ "keywords": [
19
+ "component",
20
+ "react",
21
+ "html",
22
+ "better"
23
+ ],
24
+ "author": "kriss.vv",
25
+ "license": "ISC",
26
+ "devDependencies": {
27
+ "typescript": "^5.5.3"
28
+ },
29
+ "peerDependencies": {
30
+ "react": "^18.2.0"
31
+ }
32
+ }