eastern-area-fe-package 0.2.1
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/README.md +124 -0
- package/dist/components/DynamicIcon.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +96069 -0
- package/dist/lib/iconsList.d.ts +5 -0
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/staticIcons.d.ts +4 -0
- package/dist/lib/tablerIcons.d.ts +4 -0
- package/dist/static.cjs +1 -0
- package/dist/static.d.ts +2 -0
- package/dist/static.js +2 -0
- package/dist/staticIcons-BdR9I_Uk.cjs +1 -0
- package/dist/staticIcons-DvSmzFCV.js +1407 -0
- package/dist/types/Icons.type.d.ts +13 -0
- package/dist/types/footer.types.d.ts +123 -0
- package/dist/types/governorate.types.d.ts +27 -0
- package/dist/types/home.types.d.ts +22 -0
- package/dist/types/index.d.ts +12 -0
- package/dist/types/media.types.d.ts +143 -0
- package/dist/types/pages.types.d.ts +71 -0
- package/dist/types/participation.types.d.ts +77 -0
- package/dist/types/request.types.d.ts +73 -0
- package/dist/types/satisfaction-content.types.d.ts +198 -0
- package/dist/types/satisfaction-survey.types.d.ts +43 -0
- package/dist/types/service.types.d.ts +177 -0
- package/dist/types/site-evaluation.types.d.ts +23 -0
- package/package.json +67 -0
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
export declare enum SpeechRole {
|
|
2
|
+
Prince = 0,
|
|
3
|
+
DeputyPrince = 1,
|
|
4
|
+
ExecutiveCommittee = 2
|
|
5
|
+
}
|
|
6
|
+
export interface Speech {
|
|
7
|
+
id?: string;
|
|
8
|
+
role: SpeechRole;
|
|
9
|
+
title?: string;
|
|
10
|
+
titleEn?: string;
|
|
11
|
+
content?: string;
|
|
12
|
+
contentEn?: string;
|
|
13
|
+
authorName?: string;
|
|
14
|
+
authorNameEn?: string;
|
|
15
|
+
authorImage?: string;
|
|
16
|
+
authorImageFile?: File | null;
|
|
17
|
+
}
|
|
18
|
+
export interface SatisfactionSpeech {
|
|
19
|
+
id: string;
|
|
20
|
+
role: number;
|
|
21
|
+
title: string;
|
|
22
|
+
titleEn: string;
|
|
23
|
+
content: string;
|
|
24
|
+
contentEn: string;
|
|
25
|
+
authorName: string;
|
|
26
|
+
authorNameEn: string;
|
|
27
|
+
authorImage: string;
|
|
28
|
+
createdAt: string;
|
|
29
|
+
updatedAt: string | null;
|
|
30
|
+
}
|
|
31
|
+
export interface SatisfactionStatistic {
|
|
32
|
+
id: string;
|
|
33
|
+
name: string;
|
|
34
|
+
nameEn: string;
|
|
35
|
+
icon: string;
|
|
36
|
+
value: string;
|
|
37
|
+
}
|
|
38
|
+
export interface SatisfactionMainStatistic {
|
|
39
|
+
id?: string;
|
|
40
|
+
name?: string;
|
|
41
|
+
nameEn?: string;
|
|
42
|
+
icon?: string;
|
|
43
|
+
value?: string;
|
|
44
|
+
}
|
|
45
|
+
export interface SatisfactionMember {
|
|
46
|
+
id: string;
|
|
47
|
+
name: string;
|
|
48
|
+
nameEn: string;
|
|
49
|
+
role: string;
|
|
50
|
+
roleEn: string;
|
|
51
|
+
image: string | null;
|
|
52
|
+
order: number;
|
|
53
|
+
}
|
|
54
|
+
export interface BoardMember {
|
|
55
|
+
id: string;
|
|
56
|
+
name: string;
|
|
57
|
+
nameEn: string;
|
|
58
|
+
role: string;
|
|
59
|
+
roleEn: string;
|
|
60
|
+
image?: string;
|
|
61
|
+
order: number;
|
|
62
|
+
}
|
|
63
|
+
export interface SatisfactionService {
|
|
64
|
+
id: string;
|
|
65
|
+
title: string;
|
|
66
|
+
titleEn: string;
|
|
67
|
+
icon: string;
|
|
68
|
+
}
|
|
69
|
+
export interface AboutQiyasService {
|
|
70
|
+
id?: string;
|
|
71
|
+
title?: string;
|
|
72
|
+
titleEn?: string;
|
|
73
|
+
icon?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface SatisfactionPrincipleItem {
|
|
76
|
+
id: string;
|
|
77
|
+
title: string;
|
|
78
|
+
titleEn: string;
|
|
79
|
+
description: string;
|
|
80
|
+
descriptionEn: string;
|
|
81
|
+
}
|
|
82
|
+
export interface AboutQiyasPrincipleBenchmarkItem {
|
|
83
|
+
id?: string;
|
|
84
|
+
title?: string;
|
|
85
|
+
titleEn?: string;
|
|
86
|
+
description?: string;
|
|
87
|
+
descriptionEn?: string;
|
|
88
|
+
}
|
|
89
|
+
export interface SatisfactionConfig {
|
|
90
|
+
id?: string;
|
|
91
|
+
orgStructureImage?: string;
|
|
92
|
+
orgStructureImageEn?: string;
|
|
93
|
+
vision?: string;
|
|
94
|
+
visionEn?: string;
|
|
95
|
+
mission?: string;
|
|
96
|
+
missionEn?: string;
|
|
97
|
+
aboutQiyasContent?: string;
|
|
98
|
+
aboutQiyasContentEn?: string;
|
|
99
|
+
aboutQiyasContentGoal?: string;
|
|
100
|
+
aboutQiyasContentGoalEn?: string;
|
|
101
|
+
aboutQiyasContentPrincipleBenchmark?: string;
|
|
102
|
+
aboutQiyasContentPrincipleBenchmarkEn?: string;
|
|
103
|
+
aboutQiyasContentProjectEffort?: string;
|
|
104
|
+
aboutQiyasContentProjectEffortEn?: string;
|
|
105
|
+
aboutQiyasContentWhatMeasure?: string;
|
|
106
|
+
aboutQiyasContentWhatMeasureEn?: string;
|
|
107
|
+
speeches: Speech[];
|
|
108
|
+
mainStatistics: SatisfactionMainStatistic[];
|
|
109
|
+
boardMembers: BoardMember[];
|
|
110
|
+
executiveMembers: BoardMember[];
|
|
111
|
+
aboutQiyasContentServices: AboutQiyasService[];
|
|
112
|
+
aboutQiyasContentPrincipleBenchmarkItems: AboutQiyasPrincipleBenchmarkItem[];
|
|
113
|
+
orgStructureFile?: File | null;
|
|
114
|
+
orgStructureFileEn?: File | null;
|
|
115
|
+
}
|
|
116
|
+
export interface SatisfactionInfo {
|
|
117
|
+
id: string;
|
|
118
|
+
orgStructureImage: string;
|
|
119
|
+
orgStructureImageEn: string;
|
|
120
|
+
vision: string;
|
|
121
|
+
visionEn: string;
|
|
122
|
+
mission: string;
|
|
123
|
+
missionEn: string;
|
|
124
|
+
aboutQiyasContentGoal: string;
|
|
125
|
+
aboutQiyasContentGoalEn: string;
|
|
126
|
+
aboutQiyasContentPrincipleBenchmark: string;
|
|
127
|
+
aboutQiyasContentPrincipleBenchmarkEn: string;
|
|
128
|
+
aboutQiyasContentProjectEffort: string;
|
|
129
|
+
aboutQiyasContentProjectEffortEn: string;
|
|
130
|
+
aboutQiyasContentWhatMeasure: string;
|
|
131
|
+
aboutQiyasContentWhatMeasureEn: string;
|
|
132
|
+
speeches: SatisfactionSpeech[];
|
|
133
|
+
mainStatistics: SatisfactionStatistic[];
|
|
134
|
+
aboutQiyasContentServices: SatisfactionService[];
|
|
135
|
+
aboutQiyasContentPrincipleBenchmarkItems: SatisfactionPrincipleItem[];
|
|
136
|
+
boardMembers: SatisfactionMember[];
|
|
137
|
+
executiveMembers: SatisfactionMember[];
|
|
138
|
+
createdAt: string;
|
|
139
|
+
updatedAt: string;
|
|
140
|
+
}
|
|
141
|
+
export interface PrinceLanguage {
|
|
142
|
+
id?: string;
|
|
143
|
+
princeId?: string;
|
|
144
|
+
title: string;
|
|
145
|
+
titleEn: string;
|
|
146
|
+
}
|
|
147
|
+
export interface PrinceExperience {
|
|
148
|
+
id: string;
|
|
149
|
+
princeId?: string;
|
|
150
|
+
year: string | Date | null;
|
|
151
|
+
content: string;
|
|
152
|
+
contentEn: string;
|
|
153
|
+
}
|
|
154
|
+
export interface PrinceAchievementItem {
|
|
155
|
+
id: string;
|
|
156
|
+
sectionId?: string;
|
|
157
|
+
content: string;
|
|
158
|
+
contentEn: string;
|
|
159
|
+
order?: number;
|
|
160
|
+
}
|
|
161
|
+
export interface PrinceAchievementSection {
|
|
162
|
+
id: string;
|
|
163
|
+
princeId?: string;
|
|
164
|
+
title: string;
|
|
165
|
+
titleEn: string;
|
|
166
|
+
icon?: string;
|
|
167
|
+
order: number;
|
|
168
|
+
items: PrinceAchievementItem[];
|
|
169
|
+
}
|
|
170
|
+
export type RegionalPrince = {
|
|
171
|
+
id: string;
|
|
172
|
+
name: string;
|
|
173
|
+
nameEn: string;
|
|
174
|
+
details: string;
|
|
175
|
+
detailsEn: string;
|
|
176
|
+
type: number;
|
|
177
|
+
typeName?: string;
|
|
178
|
+
isCurrent: boolean;
|
|
179
|
+
fromToDate: string;
|
|
180
|
+
fromDate: string | Date | null;
|
|
181
|
+
imageUrl: string | File | null;
|
|
182
|
+
order: number;
|
|
183
|
+
academicQualification?: string | null;
|
|
184
|
+
academicQualificationEn?: string | null;
|
|
185
|
+
birthDate?: string | Date | null;
|
|
186
|
+
birthPlace?: string | null;
|
|
187
|
+
birthPlaceEn?: string | null;
|
|
188
|
+
socialStatus?: string | null;
|
|
189
|
+
socialStatusEn?: string | null;
|
|
190
|
+
hobbies?: string | null;
|
|
191
|
+
hobbiesEn?: string | null;
|
|
192
|
+
languages?: PrinceLanguage[];
|
|
193
|
+
experiences?: PrinceExperience[];
|
|
194
|
+
achievementSections?: PrinceAchievementSection[];
|
|
195
|
+
cvUrl?: string | File | null;
|
|
196
|
+
createdAt?: string;
|
|
197
|
+
updatedAt?: string;
|
|
198
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { FormGenderEnum } from './service.types';
|
|
2
|
+
export interface LevelCounts {
|
|
3
|
+
VerySatisfied: number;
|
|
4
|
+
Satisfied: number;
|
|
5
|
+
NotSatisfied?: number;
|
|
6
|
+
SemiSatisfied?: number;
|
|
7
|
+
}
|
|
8
|
+
export interface AverageEvaluation {
|
|
9
|
+
formId: string;
|
|
10
|
+
averageEvaluation: number;
|
|
11
|
+
totalEvaluations: number;
|
|
12
|
+
}
|
|
13
|
+
export interface QuestionStatistic {
|
|
14
|
+
question: number;
|
|
15
|
+
textEn: string;
|
|
16
|
+
textAr: string;
|
|
17
|
+
totalAnswers: number;
|
|
18
|
+
levelCounts: LevelCounts;
|
|
19
|
+
averageScore: number;
|
|
20
|
+
}
|
|
21
|
+
export interface SatisfactionSurveyStats {
|
|
22
|
+
formId: string;
|
|
23
|
+
fromCategoryAr: string;
|
|
24
|
+
fromCategoryEn: string;
|
|
25
|
+
fromCategoryIcon: string;
|
|
26
|
+
fromCode: string;
|
|
27
|
+
fromDescriptionAr: string;
|
|
28
|
+
fromDescriptionEn: string;
|
|
29
|
+
fromIcon: string;
|
|
30
|
+
fromTitleAr: string;
|
|
31
|
+
fromTitleEn: string;
|
|
32
|
+
fromCategoryId?: string;
|
|
33
|
+
formForGender?: FormGenderEnum;
|
|
34
|
+
totalResponses: number;
|
|
35
|
+
questionStatistics: QuestionStatistic[];
|
|
36
|
+
averageEvaluation: AverageEvaluation;
|
|
37
|
+
}
|
|
38
|
+
export type ServiceWithStatistics = SatisfactionSurveyStats;
|
|
39
|
+
export interface SatisfactionSurveyStatsResponse {
|
|
40
|
+
items: SatisfactionSurveyStats[];
|
|
41
|
+
totalCount: number;
|
|
42
|
+
}
|
|
43
|
+
export type ServiceWithStatisticsResponse = SatisfactionSurveyStatsResponse;
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
export declare enum FormFieldType {
|
|
2
|
+
Text = 1,
|
|
3
|
+
Number = 2,
|
|
4
|
+
Select = 3,
|
|
5
|
+
Checkbox = 4,
|
|
6
|
+
Date = 5,
|
|
7
|
+
File = 6,
|
|
8
|
+
Radio = 7,
|
|
9
|
+
Signature = 8,
|
|
10
|
+
Repeater = 9,
|
|
11
|
+
TextArea = 10,
|
|
12
|
+
Email = 11,
|
|
13
|
+
Url = 12,
|
|
14
|
+
Color = 13,
|
|
15
|
+
Time = 14,
|
|
16
|
+
Phone = 15,
|
|
17
|
+
Range = 16,
|
|
18
|
+
Month = 17,
|
|
19
|
+
Week = 18
|
|
20
|
+
}
|
|
21
|
+
export declare enum ValidationRuleType {
|
|
22
|
+
Required = 0,
|
|
23
|
+
MinLength = 1,
|
|
24
|
+
MaxLength = 2,
|
|
25
|
+
Min = 3,
|
|
26
|
+
Max = 4,
|
|
27
|
+
Regex = 5,
|
|
28
|
+
Email = 6,
|
|
29
|
+
Url = 7,
|
|
30
|
+
DateMin = 8,
|
|
31
|
+
DateMax = 9,
|
|
32
|
+
FileSize = 10,
|
|
33
|
+
FileExtension = 11,
|
|
34
|
+
FileAlowedMultiple = 12,
|
|
35
|
+
Disabled = 13
|
|
36
|
+
}
|
|
37
|
+
export declare enum FieldConditionOperator {
|
|
38
|
+
Equals = 1,
|
|
39
|
+
NotEquals = 2,
|
|
40
|
+
Contains = 3,
|
|
41
|
+
NotContains = 4
|
|
42
|
+
}
|
|
43
|
+
export declare enum FieldConditionLogic {
|
|
44
|
+
And = 1,
|
|
45
|
+
Or = 2
|
|
46
|
+
}
|
|
47
|
+
export declare enum FormTypeEnum {
|
|
48
|
+
None = 0,
|
|
49
|
+
Service = 1,
|
|
50
|
+
ContactToEasternArea = 2,
|
|
51
|
+
BeneficiaryCareCenter = 2,
|
|
52
|
+
Surveys = 3
|
|
53
|
+
}
|
|
54
|
+
export declare enum FormGenderEnum {
|
|
55
|
+
Male = 1,
|
|
56
|
+
Female = 2,
|
|
57
|
+
Anyone = 3
|
|
58
|
+
}
|
|
59
|
+
export interface ServiceTranslation {
|
|
60
|
+
language: {
|
|
61
|
+
code: string;
|
|
62
|
+
};
|
|
63
|
+
title: string;
|
|
64
|
+
description: string;
|
|
65
|
+
serviceRequirements: string;
|
|
66
|
+
serviceConditions: string;
|
|
67
|
+
serviceUsageMechanism: string;
|
|
68
|
+
serviceLevelAgreement: string;
|
|
69
|
+
targetAudience: string;
|
|
70
|
+
coverageDuration: string;
|
|
71
|
+
eligibleSectors: string;
|
|
72
|
+
serviceLanguage: string;
|
|
73
|
+
coveragePercentage: string;
|
|
74
|
+
deliveryChannels: string;
|
|
75
|
+
serviceGuide: string;
|
|
76
|
+
fees: number;
|
|
77
|
+
phone: string;
|
|
78
|
+
email: string;
|
|
79
|
+
fax: string;
|
|
80
|
+
}
|
|
81
|
+
export interface ServiceCategory {
|
|
82
|
+
id: string;
|
|
83
|
+
nameAr: string;
|
|
84
|
+
nameEn: string;
|
|
85
|
+
bootstrapIcon?: string;
|
|
86
|
+
serviceCount: number;
|
|
87
|
+
}
|
|
88
|
+
export type CategoryDto = ServiceCategory;
|
|
89
|
+
export interface ServiceFieldValidation {
|
|
90
|
+
type: ValidationRuleType;
|
|
91
|
+
value: string;
|
|
92
|
+
message: string;
|
|
93
|
+
messageArabic: string;
|
|
94
|
+
}
|
|
95
|
+
export interface ServiceFieldOption {
|
|
96
|
+
value: string;
|
|
97
|
+
label: string;
|
|
98
|
+
labelArabic: string;
|
|
99
|
+
parentConditionValue?: string | null;
|
|
100
|
+
}
|
|
101
|
+
export type WorkflowFieldOption = ServiceFieldOption;
|
|
102
|
+
export interface ServiceFieldCondition {
|
|
103
|
+
fieldKey: string;
|
|
104
|
+
operator: FieldConditionOperator;
|
|
105
|
+
value: string;
|
|
106
|
+
chainLogic?: FieldConditionLogic;
|
|
107
|
+
}
|
|
108
|
+
export type WorkflowFieldCondition = ServiceFieldCondition;
|
|
109
|
+
export interface ServiceFieldTranslation {
|
|
110
|
+
language: {
|
|
111
|
+
code: string;
|
|
112
|
+
};
|
|
113
|
+
label: string;
|
|
114
|
+
placeholder: string;
|
|
115
|
+
validationMessage: string;
|
|
116
|
+
}
|
|
117
|
+
export type WorkflowFieldTranslation = ServiceFieldTranslation;
|
|
118
|
+
export interface FileOptions {
|
|
119
|
+
maxFileSizeMB: number;
|
|
120
|
+
allowedExtensions: string[];
|
|
121
|
+
allowMultiple: boolean;
|
|
122
|
+
}
|
|
123
|
+
export interface FormFieldDto {
|
|
124
|
+
id: string;
|
|
125
|
+
formStepId: string;
|
|
126
|
+
type: FormFieldType;
|
|
127
|
+
label: string;
|
|
128
|
+
labelArabic: string;
|
|
129
|
+
isRequired: boolean;
|
|
130
|
+
order: number;
|
|
131
|
+
fieldKey?: string | null;
|
|
132
|
+
parentFieldId?: string | null;
|
|
133
|
+
parentFieldOptionKey?: string | null;
|
|
134
|
+
hideByDefault: boolean;
|
|
135
|
+
conditions?: ServiceFieldCondition[] | null;
|
|
136
|
+
fileOptions?: FileOptions | null;
|
|
137
|
+
options?: ServiceFieldOption[] | null;
|
|
138
|
+
translations?: ServiceFieldTranslation[] | null;
|
|
139
|
+
validationRules?: ServiceFieldValidation[] | null;
|
|
140
|
+
children?: FormFieldDto[] | null;
|
|
141
|
+
}
|
|
142
|
+
export type WorkflowField = FormFieldDto;
|
|
143
|
+
export interface WorkflowStepTranslation {
|
|
144
|
+
language: {
|
|
145
|
+
code: string;
|
|
146
|
+
};
|
|
147
|
+
title: string;
|
|
148
|
+
description: string;
|
|
149
|
+
}
|
|
150
|
+
export type StepTranslation = WorkflowStepTranslation;
|
|
151
|
+
export interface WorkflowStep {
|
|
152
|
+
id?: string;
|
|
153
|
+
order: number;
|
|
154
|
+
formType?: FormTypeEnum;
|
|
155
|
+
translations: WorkflowStepTranslation[];
|
|
156
|
+
fields: FormFieldDto[];
|
|
157
|
+
}
|
|
158
|
+
export type Step = WorkflowStep;
|
|
159
|
+
export interface Service {
|
|
160
|
+
id: string;
|
|
161
|
+
code: string;
|
|
162
|
+
isActive: boolean;
|
|
163
|
+
isTasheelForm: boolean;
|
|
164
|
+
isOnlyCitizenForm: boolean;
|
|
165
|
+
submissionsCount: number;
|
|
166
|
+
categoryId: string;
|
|
167
|
+
category: ServiceCategory;
|
|
168
|
+
creationTime: string;
|
|
169
|
+
lastModificationTime: string | null;
|
|
170
|
+
workflowDefinitionId: string;
|
|
171
|
+
translations: ServiceTranslation[];
|
|
172
|
+
steps: WorkflowStep[];
|
|
173
|
+
formType: FormTypeEnum;
|
|
174
|
+
bootstrapIcon?: string;
|
|
175
|
+
forGender?: number;
|
|
176
|
+
usingSMS: boolean;
|
|
177
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export interface SiteEvaluationStats {
|
|
2
|
+
likedTruePercentage: number;
|
|
3
|
+
likedFalsePercentage: number;
|
|
4
|
+
usefulTruePercentage: number;
|
|
5
|
+
usefulFalsePercentage: number;
|
|
6
|
+
easyAccessTruePercentage: number;
|
|
7
|
+
easyAccessFalsePercentage: number;
|
|
8
|
+
goodContentTruePercentage: number;
|
|
9
|
+
goodContentFalsePercentage: number;
|
|
10
|
+
comfortableTruePercentage: number;
|
|
11
|
+
comfortableFalsePercentage: number;
|
|
12
|
+
irrelevantContentTruePercentage?: number;
|
|
13
|
+
irrelevantContentFalsePercentage?: number;
|
|
14
|
+
inaccurateContentTruePercentage?: number;
|
|
15
|
+
inaccurateContentFalsePercentage?: number;
|
|
16
|
+
tooLongContentTruePercentage?: number;
|
|
17
|
+
tooLongContentFalsePercentage?: number;
|
|
18
|
+
somethingElseTruePercentage?: number;
|
|
19
|
+
somethingElseFalsePercentage?: number;
|
|
20
|
+
ratingValueAverage: number;
|
|
21
|
+
totalEvaluations: number;
|
|
22
|
+
}
|
|
23
|
+
export type SiteEvaluationStatistics = SiteEvaluationStats;
|
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eastern-area-fe-package",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Shared React components and utilities between eastern-area-fe and eastern-area-crm-fe",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./static": {
|
|
16
|
+
"types": "./dist/static.d.ts",
|
|
17
|
+
"import": "./dist/static.js",
|
|
18
|
+
"require": "./dist/static.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./package.json": "./package.json"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite build --watch",
|
|
28
|
+
"build": "tsc -b && vite build",
|
|
29
|
+
"type-check": "tsc --noEmit",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
31
|
+
"prepare": "bun run build",
|
|
32
|
+
"release": "standard-version"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"react",
|
|
36
|
+
"eastern-area",
|
|
37
|
+
"shared",
|
|
38
|
+
"components",
|
|
39
|
+
"utilities"
|
|
40
|
+
],
|
|
41
|
+
"license": "UNLICENSED",
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"react": ">=18",
|
|
44
|
+
"react-dom": ">=18"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@tabler/icons-react": "^3.46.0",
|
|
48
|
+
"@types/react": "^19.2.17",
|
|
49
|
+
"@types/react-dom": "^19.2.3",
|
|
50
|
+
"@typescript/typescript6": "^6.0.2",
|
|
51
|
+
"@vitejs/plugin-react": "^6.0.3",
|
|
52
|
+
"typescript": "^7.0.2",
|
|
53
|
+
"eslint": "^8.57.1",
|
|
54
|
+
"eslint-config-prettier": "^9.1.2",
|
|
55
|
+
"eslint-plugin-import": "^2.32.0",
|
|
56
|
+
"eslint-plugin-prettier": "^5.5.6",
|
|
57
|
+
"eslint-plugin-react": "^7.37.5",
|
|
58
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
59
|
+
"prettier": "^3.9.6",
|
|
60
|
+
"vite": "^8.1.5",
|
|
61
|
+
"vite-plugin-dts": "^5.0.3",
|
|
62
|
+
"vite-plugin-svgr": "^5.2.0"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"standard-version": "^9.5.0"
|
|
66
|
+
}
|
|
67
|
+
}
|