nzds-app 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,8 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Button = void 0;
5
+ const tslib_1 = require("tslib");
6
+ var Button_1 = require("./components/Button");
7
+ Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return tslib_1.__importDefault(Button_1).default; } });
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;AAAA,IAAA,QAAA,GAAA,OAAA,CAAA,qBAAA,CAAA;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,QAAA,EAAA,EAAA,UAAA,EAAA,IAAA,EAAA,GAAA,EAAA,YAAA,EAAA,OAAA,OAAA,CAAA,eAAA,CAAA,QAAA,CAAA,CAAA,OAAO,CAAA,CAAA,CAAA,EAAA,CAAA;;"}
@@ -0,0 +1,6 @@
1
+ Object.defineProperty(exports, "__esModule", { value: true });
2
+ exports.Button = void 0;
3
+ const tslib_1 = require("tslib");
4
+ var Button_1 = require("./components/Button");
5
+ Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return tslib_1.__importDefault(Button_1).default; } });
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":[null],"names":[],"mappings":";;;AAAA,IAAA,QAAA,GAAA,OAAA,CAAA,qBAAA,CAAA;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,QAAA,EAAA,EAAA,UAAA,EAAA,IAAA,EAAA,GAAA,EAAA,YAAA,EAAA,OAAA,OAAA,CAAA,eAAA,CAAA,QAAA,CAAA,CAAA,OAAO,CAAA,CAAA,CAAA,EAAA,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var jsxRuntime = require('react/jsx-runtime');
4
+
5
+ const NZDS_Button = () => {
6
+ return jsxRuntime.jsx("button", {
7
+ children: "Hello!"
8
+ });
9
+ };
10
+
11
+ exports.Button = NZDS_Button;
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/components/Button/Button.tsx"],"sourcesContent":["export const NZDS_Button = () => {\n return <button>Hello!</button>;\n};\n"],"names":["NZDS_Button","_jsx"],"mappings":";;;;AAAO,MAAMA,WAAW,GAAGA,MAAK;EAC9B,OAAOC;;IAAuB;AAChC;;;;"}
package/dist/index.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+
3
+ const NZDS_Button = () => {
4
+ return jsx("button", {
5
+ children: "Hello!"
6
+ });
7
+ };
8
+
9
+ export { NZDS_Button as Button };
10
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","sources":["../src/components/Button/Button.tsx"],"sourcesContent":["export const NZDS_Button = () => {\n return <button>Hello!</button>;\n};\n"],"names":["NZDS_Button","_jsx"],"mappings":";;AAAO,MAAMA,WAAW,GAAGA,MAAK;EAC9B,OAAOC;;IAAuB;AAChC;;;;"}
@@ -0,0 +1 @@
1
+ export declare const NZDS_Button: () => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { NZDS_Button } from "./Button";
2
+ export default NZDS_Button;
@@ -0,0 +1 @@
1
+ export { default as Button } from "./components/Button";
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "nzds-app",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "dist/cjs/index.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "dev": "rollup -c --watch",
13
+ "build": "rollup -c",
14
+ "storybook": "storybook dev -p 6006",
15
+ "build-storybook": "storybook build"
16
+ },
17
+ "keywords": [],
18
+ "babel": {
19
+ "sourceType": "unambiguous",
20
+ "presets": [
21
+ [
22
+ "@babel/preset-env",
23
+ {
24
+ "targets": {
25
+ "chrome": 100,
26
+ "safari": 15,
27
+ "firefox": 91
28
+ }
29
+ }
30
+ ],
31
+ [
32
+ "@babel/preset-react",
33
+ {
34
+ "runtime": "automatic"
35
+ }
36
+ ],
37
+ "@babel/preset-typescript"
38
+ ]
39
+ },
40
+ "author": "",
41
+ "license": "ISC",
42
+ "type": "commonjs",
43
+ "devDependencies": {
44
+ "@babel/preset-env": "^7.29.7",
45
+ "@babel/preset-react": "^7.29.7",
46
+ "@babel/preset-typescript": "^7.29.7",
47
+ "@rollup/plugin-babel": "^7.1.0",
48
+ "@rollup/plugin-commonjs": "^29.0.3",
49
+ "@rollup/plugin-node-resolve": "^16.0.3",
50
+ "@rollup/plugin-typescript": "^12.3.0",
51
+ "@storybook/react-webpack5": "10.4.4",
52
+ "@types/react": "^19.2.17",
53
+ "postcss": "^8.5.15",
54
+ "react": "^19.2.7",
55
+ "react-dom": "^19.2.7",
56
+ "rollup": "^4.62.0",
57
+ "tslib": "^2.8.1",
58
+ "typescript": "^6.0.3"
59
+ },
60
+ "dependencies": {
61
+ "radix-ui": "^1.5.0",
62
+ "rollup-plugin-dts": "^6.4.1",
63
+ "rollup-plugin-postcss": "^4.0.2"
64
+ }
65
+ }