@lssm/lib.identity-rbac 0.0.0-canary-20251220002821 → 0.0.0-canary-20251220021406
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.
|
@@ -13,6 +13,7 @@ const OwnersEnum = {
|
|
|
13
13
|
ProductArtisanos: "product.artisanos",
|
|
14
14
|
PlatformSigil: "platform.sigil",
|
|
15
15
|
PlatformMarketplace: "platform.marketplace",
|
|
16
|
+
PlatformMessaging: "platform.messaging",
|
|
16
17
|
PlatformContent: "platform.content",
|
|
17
18
|
PlatformFeatureFlags: "platform.featureflags",
|
|
18
19
|
PlatformFinance: "platform.finance"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ownership.js","names":[],"sources":["../../../../contracts/dist/ownership.js"],"sourcesContent":["//#region src/ownership.ts\nconst StabilityEnum = {\n\tIdea: \"idea\",\n\tInCreation: \"in_creation\",\n\tExperimental: \"experimental\",\n\tBeta: \"beta\",\n\tStable: \"stable\",\n\tDeprecated: \"deprecated\"\n};\nconst OwnersEnum = {\n\tProductColiving: \"product.coliving\",\n\tProductStrit: \"product.strit\",\n\tProductArtisanos: \"product.artisanos\",\n\tPlatformSigil: \"platform.sigil\",\n\tPlatformMarketplace: \"platform.marketplace\",\n\tPlatformContent: \"platform.content\",\n\tPlatformFeatureFlags: \"platform.featureflags\",\n\tPlatformFinance: \"platform.finance\"\n};\nconst Owners = OwnersEnum;\nconst TagsEnum = {\n\tSpots: \"spots\",\n\tCollectivity: \"collectivity\",\n\tMarketplace: \"marketplace\",\n\tSellers: \"sellers\",\n\tAuth: \"auth\",\n\tLogin: \"login\",\n\tSignup: \"signup\",\n\tGuide: \"guide\",\n\tDocs: \"docs\",\n\tI18n: \"i18n\",\n\tIncident: \"incident\",\n\tAutomation: \"automation\",\n\tHygiene: \"hygiene\"\n};\nconst Tags = TagsEnum;\n\n//#endregion\nexport { Owners, OwnersEnum, StabilityEnum, Tags, TagsEnum };"],"mappings":";AACA,MAAM,gBAAgB;CACrB,MAAM;CACN,YAAY;CACZ,cAAc;CACd,MAAM;CACN,QAAQ;CACR,YAAY;CACZ;AACD,MAAM,aAAa;CAClB,iBAAiB;CACjB,cAAc;CACd,kBAAkB;CAClB,eAAe;CACf,qBAAqB;CACrB,iBAAiB;CACjB,sBAAsB;CACtB,iBAAiB;CACjB"}
|
|
1
|
+
{"version":3,"file":"ownership.js","names":[],"sources":["../../../../contracts/dist/ownership.js"],"sourcesContent":["//#region src/ownership.ts\nconst StabilityEnum = {\n\tIdea: \"idea\",\n\tInCreation: \"in_creation\",\n\tExperimental: \"experimental\",\n\tBeta: \"beta\",\n\tStable: \"stable\",\n\tDeprecated: \"deprecated\"\n};\nconst OwnersEnum = {\n\tProductColiving: \"product.coliving\",\n\tProductStrit: \"product.strit\",\n\tProductArtisanos: \"product.artisanos\",\n\tPlatformSigil: \"platform.sigil\",\n\tPlatformMarketplace: \"platform.marketplace\",\n\tPlatformMessaging: \"platform.messaging\",\n\tPlatformContent: \"platform.content\",\n\tPlatformFeatureFlags: \"platform.featureflags\",\n\tPlatformFinance: \"platform.finance\"\n};\nconst Owners = OwnersEnum;\nconst TagsEnum = {\n\tSpots: \"spots\",\n\tCollectivity: \"collectivity\",\n\tMarketplace: \"marketplace\",\n\tSellers: \"sellers\",\n\tAuth: \"auth\",\n\tLogin: \"login\",\n\tSignup: \"signup\",\n\tGuide: \"guide\",\n\tDocs: \"docs\",\n\tI18n: \"i18n\",\n\tIncident: \"incident\",\n\tAutomation: \"automation\",\n\tHygiene: \"hygiene\"\n};\nconst Tags = TagsEnum;\n\n//#endregion\nexport { Owners, OwnersEnum, StabilityEnum, Tags, TagsEnum };"],"mappings":";AACA,MAAM,gBAAgB;CACrB,MAAM;CACN,YAAY;CACZ,cAAc;CACd,MAAM;CACN,QAAQ;CACR,YAAY;CACZ;AACD,MAAM,aAAa;CAClB,iBAAiB;CACjB,cAAc;CACd,kBAAkB;CAClB,eAAe;CACf,qBAAqB;CACrB,mBAAmB;CACnB,iBAAiB;CACjB,sBAAsB;CACtB,iBAAiB;CACjB"}
|
package/dist/entities/rbac.d.ts
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema792 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/entities/rbac.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Role entity - named set of permissions.
|
|
6
6
|
*/
|
|
7
|
-
declare const RoleEntity:
|
|
8
|
-
id:
|
|
9
|
-
name:
|
|
10
|
-
description:
|
|
11
|
-
permissions:
|
|
12
|
-
createdAt:
|
|
13
|
-
updatedAt:
|
|
14
|
-
policyBindings:
|
|
7
|
+
declare const RoleEntity: _lssm_lib_schema792.EntitySpec<{
|
|
8
|
+
id: _lssm_lib_schema792.EntityScalarField;
|
|
9
|
+
name: _lssm_lib_schema792.EntityScalarField;
|
|
10
|
+
description: _lssm_lib_schema792.EntityScalarField;
|
|
11
|
+
permissions: _lssm_lib_schema792.EntityScalarField;
|
|
12
|
+
createdAt: _lssm_lib_schema792.EntityScalarField;
|
|
13
|
+
updatedAt: _lssm_lib_schema792.EntityScalarField;
|
|
14
|
+
policyBindings: _lssm_lib_schema792.EntityRelationField;
|
|
15
15
|
}>;
|
|
16
16
|
/**
|
|
17
17
|
* Permission entity - atomic access right.
|
|
18
18
|
*/
|
|
19
|
-
declare const PermissionEntity:
|
|
20
|
-
id:
|
|
21
|
-
name:
|
|
22
|
-
description:
|
|
23
|
-
createdAt:
|
|
24
|
-
updatedAt:
|
|
19
|
+
declare const PermissionEntity: _lssm_lib_schema792.EntitySpec<{
|
|
20
|
+
id: _lssm_lib_schema792.EntityScalarField;
|
|
21
|
+
name: _lssm_lib_schema792.EntityScalarField;
|
|
22
|
+
description: _lssm_lib_schema792.EntityScalarField;
|
|
23
|
+
createdAt: _lssm_lib_schema792.EntityScalarField;
|
|
24
|
+
updatedAt: _lssm_lib_schema792.EntityScalarField;
|
|
25
25
|
}>;
|
|
26
26
|
/**
|
|
27
27
|
* PolicyBinding entity - binds roles to principals.
|
|
28
28
|
*/
|
|
29
|
-
declare const PolicyBindingEntity:
|
|
30
|
-
id:
|
|
31
|
-
roleId:
|
|
32
|
-
targetType:
|
|
33
|
-
targetId:
|
|
34
|
-
expiresAt:
|
|
35
|
-
createdAt:
|
|
36
|
-
userId:
|
|
37
|
-
organizationId:
|
|
38
|
-
role:
|
|
39
|
-
user:
|
|
40
|
-
organization:
|
|
29
|
+
declare const PolicyBindingEntity: _lssm_lib_schema792.EntitySpec<{
|
|
30
|
+
id: _lssm_lib_schema792.EntityScalarField;
|
|
31
|
+
roleId: _lssm_lib_schema792.EntityScalarField;
|
|
32
|
+
targetType: _lssm_lib_schema792.EntityScalarField;
|
|
33
|
+
targetId: _lssm_lib_schema792.EntityScalarField;
|
|
34
|
+
expiresAt: _lssm_lib_schema792.EntityScalarField;
|
|
35
|
+
createdAt: _lssm_lib_schema792.EntityScalarField;
|
|
36
|
+
userId: _lssm_lib_schema792.EntityScalarField;
|
|
37
|
+
organizationId: _lssm_lib_schema792.EntityScalarField;
|
|
38
|
+
role: _lssm_lib_schema792.EntityRelationField;
|
|
39
|
+
user: _lssm_lib_schema792.EntityRelationField;
|
|
40
|
+
organization: _lssm_lib_schema792.EntityRelationField;
|
|
41
41
|
}>;
|
|
42
42
|
/**
|
|
43
43
|
* ApiKey entity - API keys for programmatic access.
|
|
44
44
|
*/
|
|
45
|
-
declare const ApiKeyEntity:
|
|
46
|
-
id:
|
|
47
|
-
name:
|
|
48
|
-
start:
|
|
49
|
-
prefix:
|
|
50
|
-
key:
|
|
51
|
-
userId:
|
|
52
|
-
refillInterval:
|
|
53
|
-
refillAmount:
|
|
54
|
-
lastRefillAt:
|
|
55
|
-
remaining:
|
|
56
|
-
requestCount:
|
|
57
|
-
lastRequest:
|
|
58
|
-
enabled:
|
|
59
|
-
rateLimitEnabled:
|
|
60
|
-
rateLimitTimeWindow:
|
|
61
|
-
rateLimitMax:
|
|
62
|
-
expiresAt:
|
|
63
|
-
permissions:
|
|
64
|
-
metadata:
|
|
65
|
-
createdAt:
|
|
66
|
-
updatedAt:
|
|
67
|
-
user:
|
|
45
|
+
declare const ApiKeyEntity: _lssm_lib_schema792.EntitySpec<{
|
|
46
|
+
id: _lssm_lib_schema792.EntityScalarField;
|
|
47
|
+
name: _lssm_lib_schema792.EntityScalarField;
|
|
48
|
+
start: _lssm_lib_schema792.EntityScalarField;
|
|
49
|
+
prefix: _lssm_lib_schema792.EntityScalarField;
|
|
50
|
+
key: _lssm_lib_schema792.EntityScalarField;
|
|
51
|
+
userId: _lssm_lib_schema792.EntityScalarField;
|
|
52
|
+
refillInterval: _lssm_lib_schema792.EntityScalarField;
|
|
53
|
+
refillAmount: _lssm_lib_schema792.EntityScalarField;
|
|
54
|
+
lastRefillAt: _lssm_lib_schema792.EntityScalarField;
|
|
55
|
+
remaining: _lssm_lib_schema792.EntityScalarField;
|
|
56
|
+
requestCount: _lssm_lib_schema792.EntityScalarField;
|
|
57
|
+
lastRequest: _lssm_lib_schema792.EntityScalarField;
|
|
58
|
+
enabled: _lssm_lib_schema792.EntityScalarField;
|
|
59
|
+
rateLimitEnabled: _lssm_lib_schema792.EntityScalarField;
|
|
60
|
+
rateLimitTimeWindow: _lssm_lib_schema792.EntityScalarField;
|
|
61
|
+
rateLimitMax: _lssm_lib_schema792.EntityScalarField;
|
|
62
|
+
expiresAt: _lssm_lib_schema792.EntityScalarField;
|
|
63
|
+
permissions: _lssm_lib_schema792.EntityScalarField;
|
|
64
|
+
metadata: _lssm_lib_schema792.EntityScalarField;
|
|
65
|
+
createdAt: _lssm_lib_schema792.EntityScalarField;
|
|
66
|
+
updatedAt: _lssm_lib_schema792.EntityScalarField;
|
|
67
|
+
user: _lssm_lib_schema792.EntityRelationField;
|
|
68
68
|
}>;
|
|
69
69
|
/**
|
|
70
70
|
* Passkey entity - WebAuthn passkeys.
|
|
71
71
|
*/
|
|
72
|
-
declare const PasskeyEntity:
|
|
73
|
-
id:
|
|
74
|
-
name:
|
|
75
|
-
publicKey:
|
|
76
|
-
userId:
|
|
77
|
-
credentialID:
|
|
78
|
-
counter:
|
|
79
|
-
deviceType:
|
|
80
|
-
backedUp:
|
|
81
|
-
transports:
|
|
82
|
-
aaguid:
|
|
83
|
-
createdAt:
|
|
84
|
-
user:
|
|
72
|
+
declare const PasskeyEntity: _lssm_lib_schema792.EntitySpec<{
|
|
73
|
+
id: _lssm_lib_schema792.EntityScalarField;
|
|
74
|
+
name: _lssm_lib_schema792.EntityScalarField;
|
|
75
|
+
publicKey: _lssm_lib_schema792.EntityScalarField;
|
|
76
|
+
userId: _lssm_lib_schema792.EntityScalarField;
|
|
77
|
+
credentialID: _lssm_lib_schema792.EntityScalarField;
|
|
78
|
+
counter: _lssm_lib_schema792.EntityScalarField;
|
|
79
|
+
deviceType: _lssm_lib_schema792.EntityScalarField;
|
|
80
|
+
backedUp: _lssm_lib_schema792.EntityScalarField;
|
|
81
|
+
transports: _lssm_lib_schema792.EntityScalarField;
|
|
82
|
+
aaguid: _lssm_lib_schema792.EntityScalarField;
|
|
83
|
+
createdAt: _lssm_lib_schema792.EntityScalarField;
|
|
84
|
+
user: _lssm_lib_schema792.EntityRelationField;
|
|
85
85
|
}>;
|
|
86
86
|
//#endregion
|
|
87
87
|
export { ApiKeyEntity, PasskeyEntity, PermissionEntity, PolicyBindingEntity, RoleEntity };
|
package/dist/entities/user.d.ts
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema854 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/entities/user.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* User entity - core user profile and authentication.
|
|
6
6
|
*/
|
|
7
|
-
declare const UserEntity:
|
|
8
|
-
id:
|
|
9
|
-
email:
|
|
10
|
-
emailVerified:
|
|
11
|
-
name:
|
|
12
|
-
firstName:
|
|
13
|
-
lastName:
|
|
14
|
-
locale:
|
|
15
|
-
timezone:
|
|
16
|
-
imageUrl:
|
|
17
|
-
image:
|
|
18
|
-
metadata:
|
|
19
|
-
onboardingCompleted:
|
|
20
|
-
onboardingStep:
|
|
21
|
-
whitelistedAt:
|
|
22
|
-
role:
|
|
23
|
-
banned:
|
|
24
|
-
banReason:
|
|
25
|
-
banExpires:
|
|
26
|
-
phoneNumber:
|
|
27
|
-
phoneNumberVerified:
|
|
28
|
-
createdAt:
|
|
29
|
-
updatedAt:
|
|
30
|
-
sessions:
|
|
31
|
-
accounts:
|
|
32
|
-
memberships:
|
|
33
|
-
invitations:
|
|
34
|
-
teamMemberships:
|
|
35
|
-
policyBindings:
|
|
36
|
-
apiKeys:
|
|
37
|
-
passkeys:
|
|
7
|
+
declare const UserEntity: _lssm_lib_schema854.EntitySpec<{
|
|
8
|
+
id: _lssm_lib_schema854.EntityScalarField;
|
|
9
|
+
email: _lssm_lib_schema854.EntityScalarField;
|
|
10
|
+
emailVerified: _lssm_lib_schema854.EntityScalarField;
|
|
11
|
+
name: _lssm_lib_schema854.EntityScalarField;
|
|
12
|
+
firstName: _lssm_lib_schema854.EntityScalarField;
|
|
13
|
+
lastName: _lssm_lib_schema854.EntityScalarField;
|
|
14
|
+
locale: _lssm_lib_schema854.EntityScalarField;
|
|
15
|
+
timezone: _lssm_lib_schema854.EntityScalarField;
|
|
16
|
+
imageUrl: _lssm_lib_schema854.EntityScalarField;
|
|
17
|
+
image: _lssm_lib_schema854.EntityScalarField;
|
|
18
|
+
metadata: _lssm_lib_schema854.EntityScalarField;
|
|
19
|
+
onboardingCompleted: _lssm_lib_schema854.EntityScalarField;
|
|
20
|
+
onboardingStep: _lssm_lib_schema854.EntityScalarField;
|
|
21
|
+
whitelistedAt: _lssm_lib_schema854.EntityScalarField;
|
|
22
|
+
role: _lssm_lib_schema854.EntityScalarField;
|
|
23
|
+
banned: _lssm_lib_schema854.EntityScalarField;
|
|
24
|
+
banReason: _lssm_lib_schema854.EntityScalarField;
|
|
25
|
+
banExpires: _lssm_lib_schema854.EntityScalarField;
|
|
26
|
+
phoneNumber: _lssm_lib_schema854.EntityScalarField;
|
|
27
|
+
phoneNumberVerified: _lssm_lib_schema854.EntityScalarField;
|
|
28
|
+
createdAt: _lssm_lib_schema854.EntityScalarField;
|
|
29
|
+
updatedAt: _lssm_lib_schema854.EntityScalarField;
|
|
30
|
+
sessions: _lssm_lib_schema854.EntityRelationField;
|
|
31
|
+
accounts: _lssm_lib_schema854.EntityRelationField;
|
|
32
|
+
memberships: _lssm_lib_schema854.EntityRelationField;
|
|
33
|
+
invitations: _lssm_lib_schema854.EntityRelationField;
|
|
34
|
+
teamMemberships: _lssm_lib_schema854.EntityRelationField;
|
|
35
|
+
policyBindings: _lssm_lib_schema854.EntityRelationField;
|
|
36
|
+
apiKeys: _lssm_lib_schema854.EntityRelationField;
|
|
37
|
+
passkeys: _lssm_lib_schema854.EntityRelationField;
|
|
38
38
|
}>;
|
|
39
39
|
/**
|
|
40
40
|
* Session entity - login sessions.
|
|
41
41
|
*/
|
|
42
|
-
declare const SessionEntity:
|
|
43
|
-
id:
|
|
44
|
-
userId:
|
|
45
|
-
expiresAt:
|
|
46
|
-
token:
|
|
47
|
-
ipAddress:
|
|
48
|
-
userAgent:
|
|
49
|
-
impersonatedBy:
|
|
50
|
-
activeOrganizationId:
|
|
51
|
-
activeTeamId:
|
|
52
|
-
createdAt:
|
|
53
|
-
updatedAt:
|
|
54
|
-
user:
|
|
42
|
+
declare const SessionEntity: _lssm_lib_schema854.EntitySpec<{
|
|
43
|
+
id: _lssm_lib_schema854.EntityScalarField;
|
|
44
|
+
userId: _lssm_lib_schema854.EntityScalarField;
|
|
45
|
+
expiresAt: _lssm_lib_schema854.EntityScalarField;
|
|
46
|
+
token: _lssm_lib_schema854.EntityScalarField;
|
|
47
|
+
ipAddress: _lssm_lib_schema854.EntityScalarField;
|
|
48
|
+
userAgent: _lssm_lib_schema854.EntityScalarField;
|
|
49
|
+
impersonatedBy: _lssm_lib_schema854.EntityScalarField;
|
|
50
|
+
activeOrganizationId: _lssm_lib_schema854.EntityScalarField;
|
|
51
|
+
activeTeamId: _lssm_lib_schema854.EntityScalarField;
|
|
52
|
+
createdAt: _lssm_lib_schema854.EntityScalarField;
|
|
53
|
+
updatedAt: _lssm_lib_schema854.EntityScalarField;
|
|
54
|
+
user: _lssm_lib_schema854.EntityRelationField;
|
|
55
55
|
}>;
|
|
56
56
|
/**
|
|
57
57
|
* Account entity - external authentication accounts.
|
|
58
58
|
*/
|
|
59
|
-
declare const AccountEntity:
|
|
60
|
-
id:
|
|
61
|
-
accountId:
|
|
62
|
-
providerId:
|
|
63
|
-
userId:
|
|
64
|
-
accessToken:
|
|
65
|
-
refreshToken:
|
|
66
|
-
idToken:
|
|
67
|
-
accessTokenExpiresAt:
|
|
68
|
-
refreshTokenExpiresAt:
|
|
69
|
-
scope:
|
|
70
|
-
password:
|
|
71
|
-
createdAt:
|
|
72
|
-
updatedAt:
|
|
73
|
-
user:
|
|
59
|
+
declare const AccountEntity: _lssm_lib_schema854.EntitySpec<{
|
|
60
|
+
id: _lssm_lib_schema854.EntityScalarField;
|
|
61
|
+
accountId: _lssm_lib_schema854.EntityScalarField;
|
|
62
|
+
providerId: _lssm_lib_schema854.EntityScalarField;
|
|
63
|
+
userId: _lssm_lib_schema854.EntityScalarField;
|
|
64
|
+
accessToken: _lssm_lib_schema854.EntityScalarField;
|
|
65
|
+
refreshToken: _lssm_lib_schema854.EntityScalarField;
|
|
66
|
+
idToken: _lssm_lib_schema854.EntityScalarField;
|
|
67
|
+
accessTokenExpiresAt: _lssm_lib_schema854.EntityScalarField;
|
|
68
|
+
refreshTokenExpiresAt: _lssm_lib_schema854.EntityScalarField;
|
|
69
|
+
scope: _lssm_lib_schema854.EntityScalarField;
|
|
70
|
+
password: _lssm_lib_schema854.EntityScalarField;
|
|
71
|
+
createdAt: _lssm_lib_schema854.EntityScalarField;
|
|
72
|
+
updatedAt: _lssm_lib_schema854.EntityScalarField;
|
|
73
|
+
user: _lssm_lib_schema854.EntityRelationField;
|
|
74
74
|
}>;
|
|
75
75
|
/**
|
|
76
76
|
* Verification entity - email/phone verification tokens.
|
|
77
77
|
*/
|
|
78
|
-
declare const VerificationEntity:
|
|
79
|
-
id:
|
|
80
|
-
identifier:
|
|
81
|
-
value:
|
|
82
|
-
expiresAt:
|
|
83
|
-
createdAt:
|
|
84
|
-
updatedAt:
|
|
78
|
+
declare const VerificationEntity: _lssm_lib_schema854.EntitySpec<{
|
|
79
|
+
id: _lssm_lib_schema854.EntityScalarField;
|
|
80
|
+
identifier: _lssm_lib_schema854.EntityScalarField;
|
|
81
|
+
value: _lssm_lib_schema854.EntityScalarField;
|
|
82
|
+
expiresAt: _lssm_lib_schema854.EntityScalarField;
|
|
83
|
+
createdAt: _lssm_lib_schema854.EntityScalarField;
|
|
84
|
+
updatedAt: _lssm_lib_schema854.EntityScalarField;
|
|
85
85
|
}>;
|
|
86
86
|
//#endregion
|
|
87
87
|
export { AccountEntity, SessionEntity, UserEntity, VerificationEntity };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.identity-rbac",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251220021406",
|
|
4
4
|
"description": "Identity, Organizations, and RBAC module for ContractSpec applications",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"lint:check": "eslint src"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
22
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
21
|
+
"@lssm/lib.schema": "0.0.0-canary-20251220021406",
|
|
22
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251220021406",
|
|
23
23
|
"zod": "^4.1.13"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
27
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
26
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251220021406",
|
|
27
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251220021406",
|
|
28
28
|
"typescript": "^5.9.3"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|