builder-settings-types 0.0.8 → 0.0.10

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "builder-settings-types",
3
3
  "description": "builder settings",
4
- "version": "0.0.8",
4
+ "version": "0.0.10",
5
5
  "type": "module",
6
6
  "main": "dist/builder-settings-types.cjs.js",
7
7
  "module": "dist/builder-settings-types.es.js",
@@ -16,6 +16,9 @@
16
16
  "typescript": "~5.6.2",
17
17
  "vite": "^6.0.1"
18
18
  },
19
+ "files": [
20
+ "dist"
21
+ ],
19
22
  "exports": {
20
23
  ".": {
21
24
  "types": "./dist/index.d.ts",
package/index.html DELETED
@@ -1,13 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>Vite + TS</title>
8
- </head>
9
- <body>
10
- <div id="app"></div>
11
- <script type="module" src="/src/main.ts"></script>
12
- </body>
13
- </html>
package/public/vite.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
package/src/index.ts DELETED
@@ -1,17 +0,0 @@
1
- import * as setting from "./settings";
2
- import * as settingsGroup from "./settingsGroup";
3
- import * as marginSettings from "./marginSettings";
4
- import * as numberSettings from "./numberSettings";
5
- import * as stringSettings from "./stringSettings";
6
-
7
- export function logger() {
8
- console.log("logg yes fixed")
9
- }
10
-
11
- export default {
12
- setting,
13
- settingsGroup,
14
- marginSettings,
15
- numberSettings,
16
- stringSettings,
17
- };
package/src/main.ts DELETED
@@ -1,144 +0,0 @@
1
- // import { MarginSetting, NumberSetting, SettingGroup } from './numberSettings'
2
- // import { Setting } from './settings'
3
- // import { StringSetting } from './stringSettings'
4
-
5
- import { NumberSetting } from "./numberSettings";
6
- import { SettingGroup } from "./settingsGroup";
7
- import { StringSetting } from "./stringSettings";
8
-
9
- // let a: NumberSetting = new NumberSetting({ minValue: 1 })
10
-
11
- // let settings = {
12
- // number1: new NumberSetting({ minValue: 1 }),
13
- // number2: new NumberSetting({
14
- // title: 'secondNumber',
15
- // maxValue: 100,
16
- // defaultValue: 5,
17
- // }),
18
- // }
19
- // let m = new MarginSetting()
20
-
21
- // Object.keys(settings).forEach(key => {
22
- // let setting = settings[key as keyof typeof settings] as Setting<any>
23
- // console.log(setting.value)
24
- // })
25
-
26
- // // class MarginSetting extends SettingType {
27
- // // type = "Margin"
28
- // // }
29
-
30
- // // const settings1 = {
31
- // // individualSettings: {
32
- // // numberSetting1: new NumberSetting({
33
- // // minValue: 1,
34
- // // maxValue: 10,
35
- // // defaultValue: 5,
36
- // // }),
37
- // // numberSetting2: new NumberSetting({
38
- // // title: 'Age',
39
- // // minValue: 18,
40
- // // maxValue: 100,
41
- // // defaultValue: 25,
42
- // // }),
43
- // // stringSetting1: new StringSetting({
44
- // // title: 'Username',
45
- // // maxLength: 20,
46
- // // defaultValue: 'Guest',
47
- // // }),
48
- // // stringSetting2: new StringSetting({
49
- // // title: 'Email',
50
- // // maxLength: 50,
51
- // // defaultValue: 'user@example.com',
52
- // // }),
53
- // // },
54
- // // groups: {
55
- // // userSettingsGroup: new SettingGroup('User Settings', {
56
- // // username: new StringSetting({
57
- // // title: 'Username',
58
- // // maxLength: 20,
59
- // // defaultValue: 'Guest',
60
- // // }),
61
- // // email: new StringSetting({
62
- // // title: 'Email',
63
- // // maxLength: 50,
64
- // // defaultValue: 'user@example.com',
65
- // // }),
66
- // // age: new NumberSetting({
67
- // // title: 'Age',
68
- // // minValue: 18,
69
- // // maxValue: 100,
70
- // // defaultValue: 25,
71
- // // }),
72
- // // }),
73
- // // preferencesGroup: new SettingGroup('Preferences', {
74
- // // volume: new NumberSetting({
75
- // // title: 'Volume',
76
- // // minValue: 0,
77
- // // maxValue: 100,
78
- // // defaultValue: 50,
79
- // // }),
80
- // // brightness: new NumberSetting({
81
- // // title: 'Brightness',
82
- // // minValue: 0,
83
- // // maxValue: 100,
84
- // // defaultValue: 75,
85
- // // }),
86
- // // }),
87
- // // },
88
- // // }
89
-
90
- // // const settings11 = {
91
- // // individualSettings: {
92
- // // numberSetting1: new NumberSetting({}),
93
- // // numberSetting2: new NumberSetting({}),
94
- // // stringSetting1: new StringSetting({}),
95
- // // stringSetting2: new StringSetting({}),
96
- // // },
97
- // // groups: {
98
- // // userSettingsGroup: new SettingGroup('User Settings', {
99
- // // username: new StringSetting({}),
100
- // // email: new StringSetting({}),
101
- // // age: new NumberSetting({}),
102
- // // }),
103
- // // preferencesGroup: new SettingGroup('Preferences', {
104
- // // volume: new NumberSetting({}),
105
- // // brightness: new NumberSetting({}),
106
- // // }),
107
- // // },
108
- // // }
109
-
110
- const mygroup = new SettingGroup({
111
- title: 'group',
112
- settings: {
113
- age: new NumberSetting({}),
114
- name: new StringSetting({}),
115
- sg: new SettingGroup({
116
- title: '123',
117
- settings: {
118
- name1: new StringSetting({}),
119
- },
120
- }),
121
- },
122
- })
123
-
124
- // mygroup.settings.age.value
125
-
126
- const settingsContainer = document.createElement("div");
127
- document.body.appendChild(settingsContainer);
128
-
129
- const leaderboardSettings = {
130
- age: new NumberSetting({
131
- title: "Age",
132
- placeholder: "Enter your age",
133
- minValue: 0,
134
- maxValue: 100,
135
- }),
136
- name: new StringSetting({ title: "Name", placeholder: "Enter your name" }),
137
- };
138
-
139
- // Loop through settings and render them
140
- Object.keys(leaderboardSettings).forEach((key) => {
141
- const setting = leaderboardSettings[key as keyof typeof leaderboardSettings];
142
- const htmlElement = setting.draw();
143
- settingsContainer.appendChild(htmlElement);
144
- });
@@ -1,32 +0,0 @@
1
- import { NumberSetting } from './numberSettings'
2
- import { SettingGroup } from './settingsGroup'
3
-
4
- export class MarginSetting extends SettingGroup<{
5
- margin: NumberSetting
6
- marginTop: NumberSetting
7
- marginRight: NumberSetting
8
- marginBottom: NumberSetting
9
- marginLeft: NumberSetting
10
- }> {
11
- constructor() {
12
- super({
13
- title: 'Margin',
14
- settings: {
15
- margin: new NumberSetting({ title: 'Margin All' }),
16
- marginTop: new NumberSetting({ title: 'Margin Top' }),
17
- marginRight: new NumberSetting({ title: 'Margin Right' }),
18
- marginBottom: new NumberSetting({ title: 'Margin Bottom' }),
19
- marginLeft: new NumberSetting({ title: 'Margin Left' }),
20
- },
21
- })
22
- }
23
-
24
- getCssCode(){
25
- return `
26
- margin-botton: ${this.settings.marginBottom.value}px;
27
- margin-top: ${this.settings.marginTop.value}px;
28
- margin-right: ${this.settings.marginRight.value}px;
29
- margin-left: ${this.settings.marginLeft.value}px;
30
- `
31
- }
32
- }
@@ -1,32 +0,0 @@
1
- import { Setting, SettingProps } from './settings'
2
-
3
- export interface NumberInputProps extends SettingProps<number> {
4
- minValue?: number
5
- maxValue?: number
6
- className?: string
7
- }
8
-
9
- export class NumberSetting extends Setting<number> {
10
- inputType: string = 'number'
11
- constructor(protected props: NumberInputProps = {}) {
12
- super(props)
13
- }
14
-
15
- draw(): HTMLElement {
16
- const element = super.defaultDraw()
17
-
18
- const input = element.querySelector('input') as HTMLInputElement
19
-
20
- if (this.props.minValue !== undefined) {
21
- input.min = String(this.props.minValue)
22
- }
23
- if (this.props.maxValue !== undefined) {
24
- input.max = String(this.props.maxValue)
25
- }
26
- if (this.props.className) {
27
- input.classList.add(this.props.className)
28
- }
29
-
30
- return element
31
- }
32
- }
package/src/settings.ts DELETED
@@ -1,38 +0,0 @@
1
- import { NumberSetting } from "./numberSettings"
2
-
3
- export interface SettingProps<T> {
4
- defaultValue?: T
5
- title?: string
6
- placeholder?: string
7
- }
8
-
9
- export abstract class Setting<T> {
10
- value: T | undefined
11
- title: string | undefined
12
- abstract inputType: string
13
-
14
- constructor(protected props: SettingProps<T> = {}) {
15
- this.title = props.title || 'Setting'
16
- this.value = props.defaultValue
17
- }
18
-
19
- abstract draw(): HTMLElement
20
-
21
- defaultDraw(): HTMLElement {
22
- const wrapper = document.createElement('div')
23
-
24
- const label = document.createElement('label')
25
- label.textContent = this.title ?? ''
26
-
27
- const input = document.createElement('input')
28
- input.type = this.inputType
29
- input.placeholder = this.props.placeholder || `Enter ${this.title}`
30
- input.value = this.value !== undefined ? String(this.value) : ''
31
-
32
- wrapper.appendChild(label)
33
- wrapper.appendChild(input)
34
-
35
- return wrapper
36
- }
37
- }
38
-
@@ -1,21 +0,0 @@
1
- import { Setting } from "./settings";
2
-
3
- export type SettingGroupProps<T> = {
4
- title: string;
5
- settings: T;
6
- };
7
-
8
- export class SettingGroup<T extends Record<string, Setting<any> | SettingGroup<any>>> {
9
- title: string;
10
- settings: T;
11
-
12
- constructor(groupProps: SettingGroupProps<T>) {
13
- this.title = groupProps.title;
14
- this.settings = groupProps.settings;
15
-
16
- // Assign settings properties directly to the instance
17
- Object.assign(this, groupProps.settings);
18
- }
19
- }
20
-
21
- //{{settings.balance.settings.Color.value}}
@@ -1,17 +0,0 @@
1
- import { Setting, SettingProps } from './settings'
2
-
3
- export interface StringInputProps extends SettingProps<string> {
4
- maxLength?: number
5
- }
6
-
7
- export class StringSetting extends Setting<string> {
8
- inputType = 'text'
9
-
10
- constructor(props: StringInputProps = {}) {
11
- super(props)
12
- }
13
-
14
- draw(): HTMLElement {
15
- return super.defaultDraw()
16
- }
17
- }
package/src/style.css DELETED
@@ -1,96 +0,0 @@
1
- :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
- line-height: 1.5;
4
- font-weight: 400;
5
-
6
- color-scheme: light dark;
7
- color: rgba(255, 255, 255, 0.87);
8
- background-color: #242424;
9
-
10
- font-synthesis: none;
11
- text-rendering: optimizeLegibility;
12
- -webkit-font-smoothing: antialiased;
13
- -moz-osx-font-smoothing: grayscale;
14
- }
15
-
16
- a {
17
- font-weight: 500;
18
- color: #646cff;
19
- text-decoration: inherit;
20
- }
21
- a:hover {
22
- color: #535bf2;
23
- }
24
-
25
- body {
26
- margin: 0;
27
- display: flex;
28
- place-items: center;
29
- min-width: 320px;
30
- min-height: 100vh;
31
- }
32
-
33
- h1 {
34
- font-size: 3.2em;
35
- line-height: 1.1;
36
- }
37
-
38
- #app {
39
- max-width: 1280px;
40
- margin: 0 auto;
41
- padding: 2rem;
42
- text-align: center;
43
- }
44
-
45
- .logo {
46
- height: 6em;
47
- padding: 1.5em;
48
- will-change: filter;
49
- transition: filter 300ms;
50
- }
51
- .logo:hover {
52
- filter: drop-shadow(0 0 2em #646cffaa);
53
- }
54
- .logo.vanilla:hover {
55
- filter: drop-shadow(0 0 2em #3178c6aa);
56
- }
57
-
58
- .card {
59
- padding: 2em;
60
- }
61
-
62
- .read-the-docs {
63
- color: #888;
64
- }
65
-
66
- button {
67
- border-radius: 8px;
68
- border: 1px solid transparent;
69
- padding: 0.6em 1.2em;
70
- font-size: 1em;
71
- font-weight: 500;
72
- font-family: inherit;
73
- background-color: #1a1a1a;
74
- cursor: pointer;
75
- transition: border-color 0.25s;
76
- }
77
- button:hover {
78
- border-color: #646cff;
79
- }
80
- button:focus,
81
- button:focus-visible {
82
- outline: 4px auto -webkit-focus-ring-color;
83
- }
84
-
85
- @media (prefers-color-scheme: light) {
86
- :root {
87
- color: #213547;
88
- background-color: #ffffff;
89
- }
90
- a:hover {
91
- color: #747bff;
92
- }
93
- button {
94
- background-color: #f9f9f9;
95
- }
96
- }
package/src/test.ts DELETED
@@ -1,144 +0,0 @@
1
- // import { MarginSetting, NumberSetting, SettingGroup } from './numberSettings'
2
- // import { Setting } from './settings'
3
- // import { StringSetting } from './stringSettings'
4
-
5
- import { NumberSetting } from "./numberSettings";
6
- import { SettingGroup } from "./settingsGroup";
7
- import { StringSetting } from "./stringSettings";
8
-
9
- // let a: NumberSetting = new NumberSetting({ minValue: 1 })
10
-
11
- // let settings = {
12
- // number1: new NumberSetting({ minValue: 1 }),
13
- // number2: new NumberSetting({
14
- // title: 'secondNumber',
15
- // maxValue: 100,
16
- // defaultValue: 5,
17
- // }),
18
- // }
19
- // let m = new MarginSetting()
20
-
21
- // Object.keys(settings).forEach(key => {
22
- // let setting = settings[key as keyof typeof settings] as Setting<any>
23
- // console.log(setting.value)
24
- // })
25
-
26
- // // class MarginSetting extends SettingType {
27
- // // type = "Margin"
28
- // // }
29
-
30
- // // const settings1 = {
31
- // // individualSettings: {
32
- // // numberSetting1: new NumberSetting({
33
- // // minValue: 1,
34
- // // maxValue: 10,
35
- // // defaultValue: 5,
36
- // // }),
37
- // // numberSetting2: new NumberSetting({
38
- // // title: 'Age',
39
- // // minValue: 18,
40
- // // maxValue: 100,
41
- // // defaultValue: 25,
42
- // // }),
43
- // // stringSetting1: new StringSetting({
44
- // // title: 'Username',
45
- // // maxLength: 20,
46
- // // defaultValue: 'Guest',
47
- // // }),
48
- // // stringSetting2: new StringSetting({
49
- // // title: 'Email',
50
- // // maxLength: 50,
51
- // // defaultValue: 'user@example.com',
52
- // // }),
53
- // // },
54
- // // groups: {
55
- // // userSettingsGroup: new SettingGroup('User Settings', {
56
- // // username: new StringSetting({
57
- // // title: 'Username',
58
- // // maxLength: 20,
59
- // // defaultValue: 'Guest',
60
- // // }),
61
- // // email: new StringSetting({
62
- // // title: 'Email',
63
- // // maxLength: 50,
64
- // // defaultValue: 'user@example.com',
65
- // // }),
66
- // // age: new NumberSetting({
67
- // // title: 'Age',
68
- // // minValue: 18,
69
- // // maxValue: 100,
70
- // // defaultValue: 25,
71
- // // }),
72
- // // }),
73
- // // preferencesGroup: new SettingGroup('Preferences', {
74
- // // volume: new NumberSetting({
75
- // // title: 'Volume',
76
- // // minValue: 0,
77
- // // maxValue: 100,
78
- // // defaultValue: 50,
79
- // // }),
80
- // // brightness: new NumberSetting({
81
- // // title: 'Brightness',
82
- // // minValue: 0,
83
- // // maxValue: 100,
84
- // // defaultValue: 75,
85
- // // }),
86
- // // }),
87
- // // },
88
- // // }
89
-
90
- // // const settings11 = {
91
- // // individualSettings: {
92
- // // numberSetting1: new NumberSetting({}),
93
- // // numberSetting2: new NumberSetting({}),
94
- // // stringSetting1: new StringSetting({}),
95
- // // stringSetting2: new StringSetting({}),
96
- // // },
97
- // // groups: {
98
- // // userSettingsGroup: new SettingGroup('User Settings', {
99
- // // username: new StringSetting({}),
100
- // // email: new StringSetting({}),
101
- // // age: new NumberSetting({}),
102
- // // }),
103
- // // preferencesGroup: new SettingGroup('Preferences', {
104
- // // volume: new NumberSetting({}),
105
- // // brightness: new NumberSetting({}),
106
- // // }),
107
- // // },
108
- // // }
109
-
110
- const mygroup = new SettingGroup({
111
- title: 'group',
112
- settings: {
113
- age: new NumberSetting({}),
114
- name: new StringSetting({}),
115
- sg: new SettingGroup({
116
- title: '123',
117
- settings: {
118
- name1: new StringSetting({}),
119
- },
120
- }),
121
- },
122
- })
123
-
124
- // mygroup.settings.age.value
125
-
126
- const settingsContainer = document.createElement("div");
127
- document.body.appendChild(settingsContainer);
128
-
129
- const leaderboardSettings = {
130
- age: new NumberSetting({
131
- title: "Age",
132
- placeholder: "Enter your age",
133
- minValue: 0,
134
- maxValue: 100,
135
- }),
136
- name: new StringSetting({ title: "Name", placeholder: "Enter your name" }),
137
- };
138
-
139
- // Loop through settings and render them
140
- Object.keys(leaderboardSettings).forEach((key) => {
141
- const setting = leaderboardSettings[key as keyof typeof leaderboardSettings];
142
- const htmlElement = setting.draw();
143
- settingsContainer.appendChild(htmlElement);
144
- });
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 256"><path fill="#007ACC" d="M0 128v128h256V0H0z"></path><path fill="#FFF" d="m56.612 128.85l-.081 10.483h33.32v94.68h23.568v-94.68h33.321v-10.28c0-5.69-.122-10.444-.284-10.566c-.122-.162-20.4-.244-44.983-.203l-44.74.122l-.121 10.443Zm149.955-10.742c6.501 1.625 11.459 4.51 16.01 9.224c2.357 2.52 5.851 7.111 6.136 8.208c.08.325-11.053 7.802-17.798 11.988c-.244.162-1.22-.894-2.317-2.52c-3.291-4.795-6.745-6.867-12.028-7.233c-7.76-.528-12.759 3.535-12.718 10.321c0 1.992.284 3.17 1.097 4.795c1.707 3.536 4.876 5.649 14.832 9.956c18.326 7.883 26.168 13.084 31.045 20.48c5.445 8.249 6.664 21.415 2.966 31.208c-4.063 10.646-14.14 17.879-28.323 20.276c-4.388.772-14.79.65-19.504-.203c-10.28-1.828-20.033-6.908-26.047-13.572c-2.357-2.6-6.949-9.387-6.664-9.874c.122-.163 1.178-.813 2.356-1.504c1.138-.65 5.446-3.129 9.509-5.485l7.355-4.267l1.544 2.276c2.154 3.29 6.867 7.801 9.712 9.305c8.167 4.307 19.383 3.698 24.909-1.26c2.357-2.153 3.332-4.388 3.332-7.68c0-2.966-.366-4.266-1.91-6.501c-1.99-2.845-6.054-5.242-17.595-10.24c-13.206-5.69-18.895-9.224-24.096-14.832c-3.007-3.25-5.852-8.452-7.03-12.8c-.975-3.617-1.22-12.678-.447-16.335c2.723-12.76 12.353-21.659 26.25-24.3c4.51-.853 14.994-.528 19.424.569Z"></path></svg>
package/src/vite-env.d.ts DELETED
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />
package/tsconfig.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "ESNext",
5
- "lib": ["ES2020", "DOM"],
6
- "declaration": true,
7
- "emitDeclarationOnly": true,
8
- "declarationDir": "./dist",
9
- "strict": true,
10
- "skipLibCheck": true,
11
- "esModuleInterop": true,
12
- "moduleResolution": "node",
13
- "outDir": "./dist"
14
- },
15
- "include": ["src/**/*"],
16
- "exclude": ["node_modules", "dist"]
17
- }
package/vite.config.ts DELETED
@@ -1,25 +0,0 @@
1
- import { defineConfig } from "vite";
2
- import dts from "vite-plugin-dts";
3
-
4
- export default defineConfig({
5
- plugins: [
6
- dts({
7
- tsconfigPath: "./tsconfig.json", // Ensure this points to your tsconfig.json
8
- outDir: "./dist", // Output directory for declaration files
9
- entryRoot: "./src", // Base directory for entry files
10
- insertTypesEntry: true, // Generate types entry in package.json
11
- rollupTypes: true, // Bundle type declarations into a single file
12
- }),
13
- ],
14
- build: {
15
- lib: {
16
- entry: "src/index.ts",
17
- name: "builder-settings-types",
18
- fileName: (format) => `builder-settings-types.${format}.js`,
19
- formats: ["es", "cjs"],
20
- },
21
- rollupOptions: {
22
- external: [], // Specify external dependencies if any
23
- },
24
- },
25
- });