@panguard-ai/panguard-web 1.1.0 → 1.5.5
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/dist/content/index.d.ts +1 -1
- package/dist/content/index.d.ts.map +1 -1
- package/dist/content/index.js +1 -1
- package/dist/content/index.js.map +1 -1
- package/dist/content/pricing.d.ts +8 -34
- package/dist/content/pricing.d.ts.map +1 -1
- package/dist/content/pricing.js +19 -70
- package/dist/content/pricing.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/content/index.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* @module @panguard-ai/panguard-web/content
|
|
6
6
|
*/
|
|
7
7
|
export { PERSONAS, getPersona, getAllPersonas } from './personas.js';
|
|
8
|
-
export { PRICING_PLANS,
|
|
8
|
+
export { PRICING_PLANS, getAllPricingPlans, getPricingPlan, getRecommendedPlan, } from './pricing.js';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/content/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EACL,aAAa,EACb,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/content/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,cAAc,EACd,kBAAkB,GACnB,MAAM,cAAc,CAAC"}
|
package/dist/content/index.js
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* @module @panguard-ai/panguard-web/content
|
|
6
6
|
*/
|
|
7
7
|
export { PERSONAS, getPersona, getAllPersonas } from './personas.js';
|
|
8
|
-
export { PRICING_PLANS,
|
|
8
|
+
export { PRICING_PLANS, getAllPricingPlans, getPricingPlan, getRecommendedPlan, } from './pricing.js';
|
|
9
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/content/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EACL,aAAa,EACb,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/content/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,cAAc,EACd,kBAAkB,GACnB,MAAM,cAAc,CAAC"}
|
|
@@ -1,39 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Pricing
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Based on competitive analysis: Panguard fills the gap between
|
|
6
|
-
* self-serve EDR ($2-8/ep) and enterprise AI SOC ($36K+/yr).
|
|
7
|
-
* "AI watches for you, at self-serve prices."
|
|
8
|
-
*
|
|
9
|
-
* @module @panguard-ai/panguard-web/content/pricing
|
|
2
|
+
* Pricing plans content (community edition — all free)
|
|
3
|
+
* 定價方案內容(社群版 — 完全免費)
|
|
10
4
|
*/
|
|
11
|
-
import type { PricingPlanDetails, PricingPlan,
|
|
5
|
+
import type { PricingPlanDetails, PricingPlan, PersonaType } from '../types.js';
|
|
12
6
|
export declare const PRICING_PLANS: PricingPlanDetails[];
|
|
13
|
-
export declare const REPORT_ADDONS: ReportAddon[];
|
|
14
|
-
/**
|
|
15
|
-
* Get pricing plan by type
|
|
16
|
-
* 根據類型取得方案
|
|
17
|
-
*/
|
|
18
|
-
export declare function getPricingPlan(plan: PricingPlan): PricingPlanDetails | undefined;
|
|
19
|
-
/**
|
|
20
|
-
* Get all pricing plans
|
|
21
|
-
* 取得所有方案
|
|
22
|
-
*/
|
|
23
7
|
export declare function getAllPricingPlans(): PricingPlanDetails[];
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Get all report add-on products
|
|
31
|
-
* 取得所有報告加購產品
|
|
32
|
-
*/
|
|
33
|
-
export declare function getAllReportAddons(): ReportAddon[];
|
|
34
|
-
/**
|
|
35
|
-
* Get report add-on by ID
|
|
36
|
-
* 根據 ID 取得報告加購產品
|
|
37
|
-
*/
|
|
38
|
-
export declare function getReportAddon(id: string): ReportAddon | undefined;
|
|
8
|
+
export declare function getPricingPlan(plan: PricingPlan): PricingPlanDetails | undefined;
|
|
9
|
+
export declare function getRecommendedPlan(personaType: PersonaType): {
|
|
10
|
+
plan: PricingPlan;
|
|
11
|
+
details: PricingPlanDetails;
|
|
12
|
+
} | undefined;
|
|
39
13
|
//# sourceMappingURL=pricing.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pricing.d.ts","sourceRoot":"","sources":["../../src/content/pricing.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"pricing.d.ts","sourceRoot":"","sources":["../../src/content/pricing.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAEhF,eAAO,MAAM,aAAa,EAAE,kBAAkB,EAqB7C,CAAC;AAEF,wBAAgB,kBAAkB,IAAI,kBAAkB,EAAE,CAEzD;AAED,wBAAgB,cAAc,CAAC,IAAI,EAAE,WAAW,GAAG,kBAAkB,GAAG,SAAS,CAEhF;AAED,wBAAgB,kBAAkB,CAChC,WAAW,EAAE,WAAW,GACvB;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,OAAO,EAAE,kBAAkB,CAAA;CAAE,GAAG,SAAS,CAIhE"}
|
package/dist/content/pricing.js
CHANGED
|
@@ -1,90 +1,39 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Pricing
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Based on competitive analysis: Panguard fills the gap between
|
|
6
|
-
* self-serve EDR ($2-8/ep) and enterprise AI SOC ($36K+/yr).
|
|
7
|
-
* "AI watches for you, at self-serve prices."
|
|
8
|
-
*
|
|
9
|
-
* @module @panguard-ai/panguard-web/content/pricing
|
|
2
|
+
* Pricing plans content (community edition — all free)
|
|
3
|
+
* 定價方案內容(社群版 — 完全免費)
|
|
10
4
|
*/
|
|
11
|
-
// ---------------------------------------------------------------------------
|
|
12
|
-
// Shared features
|
|
13
|
-
// 共享功能
|
|
14
|
-
// ---------------------------------------------------------------------------
|
|
15
|
-
function feature(nameEn, nameZh, included, limit) {
|
|
16
|
-
return { nameEn, nameZh, included, limit };
|
|
17
|
-
}
|
|
18
|
-
// ---------------------------------------------------------------------------
|
|
19
|
-
// Plan definitions — Community plan (all features free)
|
|
20
|
-
// 方案定義 — 社群方案(所有功能免費)
|
|
21
|
-
// ---------------------------------------------------------------------------
|
|
22
5
|
export const PRICING_PLANS = [
|
|
23
6
|
{
|
|
24
7
|
plan: 'community',
|
|
25
8
|
nameEn: 'Community',
|
|
26
9
|
nameZh: '社群版',
|
|
27
|
-
taglineEn: '
|
|
28
|
-
taglineZh: '
|
|
10
|
+
taglineEn: 'Free forever. No credit card required.',
|
|
11
|
+
taglineZh: '永久免費。不需信用卡。',
|
|
29
12
|
priceUsd: 0,
|
|
30
13
|
priceDisplayEn: 'Free',
|
|
31
14
|
priceDisplayZh: '免費',
|
|
32
|
-
targetPersona: 'developer',
|
|
33
|
-
highlighted: true,
|
|
34
15
|
features: [
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
feature('Panguard Trap (honeypot)', 'Panguard Trap(蜜罐系統)', true),
|
|
42
|
-
feature('Notification channels', '通知管道', true),
|
|
43
|
-
feature('Compliance reports', '合規報告', true),
|
|
44
|
-
feature('Webhook / API integration', 'Webhook / API 整合', true),
|
|
45
|
-
feature('Community support', '社群支援', true),
|
|
16
|
+
{ nameEn: 'Panguard Scan', nameZh: 'Panguard Scan', included: true },
|
|
17
|
+
{ nameEn: 'Panguard Guard', nameZh: 'Panguard Guard', included: true },
|
|
18
|
+
{ nameEn: 'Panguard Chat', nameZh: 'Panguard Chat', included: true },
|
|
19
|
+
{ nameEn: 'Panguard Trap', nameZh: 'Panguard Trap', included: true },
|
|
20
|
+
{ nameEn: 'Panguard Report', nameZh: 'Panguard Report', included: true },
|
|
21
|
+
{ nameEn: 'Open Source', nameZh: '開放原始碼', included: true },
|
|
46
22
|
],
|
|
23
|
+
targetPersona: 'developer',
|
|
24
|
+
highlighted: true,
|
|
47
25
|
},
|
|
48
26
|
];
|
|
49
|
-
// ---------------------------------------------------------------------------
|
|
50
|
-
// Report add-on products (independent of subscription tier)
|
|
51
|
-
// 報告加購產品(獨立於訂閱方案)
|
|
52
|
-
// ---------------------------------------------------------------------------
|
|
53
|
-
export const REPORT_ADDONS = [];
|
|
54
|
-
/**
|
|
55
|
-
* Get pricing plan by type
|
|
56
|
-
* 根據類型取得方案
|
|
57
|
-
*/
|
|
58
|
-
export function getPricingPlan(plan) {
|
|
59
|
-
return PRICING_PLANS.find((p) => p.plan === plan);
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* Get all pricing plans
|
|
63
|
-
* 取得所有方案
|
|
64
|
-
*/
|
|
65
27
|
export function getAllPricingPlans() {
|
|
66
28
|
return PRICING_PLANS;
|
|
67
29
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
* 根據角色取得推薦方案
|
|
71
|
-
*/
|
|
72
|
-
export function getRecommendedPlan(persona) {
|
|
73
|
-
return (PRICING_PLANS.find((p) => p.targetPersona === persona && p.highlighted) ??
|
|
74
|
-
PRICING_PLANS.find((p) => p.targetPersona === persona));
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* Get all report add-on products
|
|
78
|
-
* 取得所有報告加購產品
|
|
79
|
-
*/
|
|
80
|
-
export function getAllReportAddons() {
|
|
81
|
-
return REPORT_ADDONS;
|
|
30
|
+
export function getPricingPlan(plan) {
|
|
31
|
+
return PRICING_PLANS.find((p) => p.plan === plan);
|
|
82
32
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
return REPORT_ADDONS.find((r) => r.id === id);
|
|
33
|
+
export function getRecommendedPlan(personaType) {
|
|
34
|
+
const match = PRICING_PLANS.find((p) => p.targetPersona === personaType);
|
|
35
|
+
if (!match)
|
|
36
|
+
return undefined;
|
|
37
|
+
return { plan: match.plan, details: match };
|
|
89
38
|
}
|
|
90
39
|
//# sourceMappingURL=pricing.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pricing.js","sourceRoot":"","sources":["../../src/content/pricing.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"pricing.js","sourceRoot":"","sources":["../../src/content/pricing.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,MAAM,CAAC,MAAM,aAAa,GAAyB;IACjD;QACE,IAAI,EAAE,WAAW;QACjB,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,wCAAwC;QACnD,SAAS,EAAE,aAAa;QACxB,QAAQ,EAAE,CAAC;QACX,cAAc,EAAE,MAAM;QACtB,cAAc,EAAE,IAAI;QACpB,QAAQ,EAAE;YACR,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE;YACpE,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE;YACtE,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE;YACpE,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE;YACpE,EAAE,MAAM,EAAE,iBAAiB,EAAE,MAAM,EAAE,iBAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE;YACxE,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE;SAC3D;QACD,aAAa,EAAE,WAAW;QAC1B,WAAW,EAAE,IAAI;KAClB;CACF,CAAC;AAEF,MAAM,UAAU,kBAAkB;IAChC,OAAO,aAAa,CAAC;AACvB,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,IAAiB;IAC9C,OAAO,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,UAAU,kBAAkB,CAChC,WAAwB;IAExB,MAAM,KAAK,GAAG,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC;IACzE,IAAI,CAAC,KAAK;QAAE,OAAO,SAAS,CAAC;IAC7B,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;AAC9C,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -15,8 +15,7 @@ export declare const PANGUARD_WEB_VERSION: string;
|
|
|
15
15
|
export declare const PANGUARD_WEB_NAME = "Panguard Web";
|
|
16
16
|
export type { WebLanguage, PersonaType, PersonaProfile, ScenarioStory, PricingPlan, PlanFeature, PricingPlanDetails, ReportAddon, PageId, PageMeta, GuidanceStepType, GuidanceStep, GuidanceOption, GuidanceAnswers, GuidanceResult, WebConfig, } from './types.js';
|
|
17
17
|
export { DEFAULT_WEB_CONFIG } from './types.js';
|
|
18
|
-
export { PERSONAS, getPersona, getAllPersonas } from './content/index.js';
|
|
19
|
-
export { PRICING_PLANS, REPORT_ADDONS, getPricingPlan, getAllPricingPlans, getRecommendedPlan, getAllReportAddons, getReportAddon, } from './content/index.js';
|
|
18
|
+
export { PERSONAS, getPersona, getAllPersonas, PRICING_PLANS, getAllPricingPlans, getPricingPlan, getRecommendedPlan, } from './content/index.js';
|
|
20
19
|
export { PAGES, getPage, getPageTitle, getAllPages, getNavItems, PRODUCT_FEATURES, getProductFeature, } from './pages/index.js';
|
|
21
20
|
export type { ProductFeature } from './pages/index.js';
|
|
22
21
|
export { GUIDANCE_STEPS, getGuidanceStep, getNextStep, getPreviousStep, getTotalSteps, generateGuidanceResult, } from './guidance/index.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAMH,eAAO,MAAM,oBAAoB,EAAE,MAAqB,CAAC;AACzD,eAAO,MAAM,iBAAiB,iBAAiB,CAAC;AAGhD,YAAY,EACV,WAAW,EACX,WAAW,EACX,cAAc,EACd,aAAa,EACb,WAAW,EACX,WAAW,EACX,kBAAkB,EAClB,WAAW,EACX,MAAM,EACN,QAAQ,EACR,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,eAAe,EACf,cAAc,EACd,SAAS,GACV,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAGhD,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAMH,eAAO,MAAM,oBAAoB,EAAE,MAAqB,CAAC;AACzD,eAAO,MAAM,iBAAiB,iBAAiB,CAAC;AAGhD,YAAY,EACV,WAAW,EACX,WAAW,EACX,cAAc,EACd,aAAa,EACb,WAAW,EACX,WAAW,EACX,kBAAkB,EAClB,WAAW,EACX,MAAM,EACN,QAAQ,EACR,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,eAAe,EACf,cAAc,EACd,SAAS,GACV,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAGhD,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EACd,aAAa,EACb,kBAAkB,EAClB,cAAc,EACd,kBAAkB,GACnB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,EACL,KAAK,EACL,OAAO,EACP,YAAY,EACZ,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAGvD,OAAO,EACL,cAAc,EACd,eAAe,EACf,WAAW,EACX,eAAe,EACf,aAAa,EACb,sBAAsB,GACvB,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EACL,YAAY,EACZ,WAAW,EACX,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,GACf,MAAM,sBAAsB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -17,10 +17,8 @@ const _pkg = _require('../package.json');
|
|
|
17
17
|
export const PANGUARD_WEB_VERSION = _pkg.version;
|
|
18
18
|
export const PANGUARD_WEB_NAME = 'Panguard Web';
|
|
19
19
|
export { DEFAULT_WEB_CONFIG } from './types.js';
|
|
20
|
-
// Content - Personas
|
|
21
|
-
export { PERSONAS, getPersona, getAllPersonas } from './content/index.js';
|
|
22
|
-
// Content - Pricing
|
|
23
|
-
export { PRICING_PLANS, REPORT_ADDONS, getPricingPlan, getAllPricingPlans, getRecommendedPlan, getAllReportAddons, getReportAddon, } from './content/index.js';
|
|
20
|
+
// Content - Personas + Pricing
|
|
21
|
+
export { PERSONAS, getPersona, getAllPersonas, PRICING_PLANS, getAllPricingPlans, getPricingPlan, getRecommendedPlan, } from './content/index.js';
|
|
24
22
|
// Pages
|
|
25
23
|
export { PAGES, getPage, getPageTitle, getAllPages, getNavItems, PRODUCT_FEATURES, getProductFeature, } from './pages/index.js';
|
|
26
24
|
// Guidance
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,MAAM,QAAQ,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAChD,MAAM,IAAI,GAAG,QAAQ,CAAC,iBAAiB,CAAwB,CAAC;AAEhE,MAAM,CAAC,MAAM,oBAAoB,GAAW,IAAI,CAAC,OAAO,CAAC;AACzD,MAAM,CAAC,MAAM,iBAAiB,GAAG,cAAc,CAAC;AAqBhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,MAAM,QAAQ,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAChD,MAAM,IAAI,GAAG,QAAQ,CAAC,iBAAiB,CAAwB,CAAC;AAEhE,MAAM,CAAC,MAAM,oBAAoB,GAAW,IAAI,CAAC,OAAO,CAAC;AACzD,MAAM,CAAC,MAAM,iBAAiB,GAAG,cAAc,CAAC;AAqBhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD,+BAA+B;AAC/B,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EACd,aAAa,EACb,kBAAkB,EAClB,cAAc,EACd,kBAAkB,GACnB,MAAM,oBAAoB,CAAC;AAE5B,QAAQ;AACR,OAAO,EACL,KAAK,EACL,OAAO,EACP,YAAY,EACZ,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,kBAAkB,CAAC;AAG1B,WAAW;AACX,OAAO,EACL,cAAc,EACd,eAAe,EACf,WAAW,EACX,eAAe,EACf,aAAa,EACb,sBAAsB,GACvB,MAAM,qBAAqB,CAAC;AAE7B,YAAY;AACZ,OAAO,EACL,YAAY,EACZ,WAAW,EACX,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,GACf,MAAM,sBAAsB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panguard-ai/panguard-web",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"README.md"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@panguard-ai/core": "1.
|
|
23
|
+
"@panguard-ai/core": "1.5.5"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "^22.14.0",
|