@litlab/audx 0.0.2 → 0.6.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.
- package/README.md +96 -53
- package/dist/bin.js +1212 -0
- package/dist/cc-DgCkkqq8.js +13 -0
- package/dist/cc-he3fHS3P.js +12 -0
- package/dist/index.d.ts +723 -3
- package/dist/index.js +1534 -126
- package/dist/react.d.ts +583 -0
- package/dist/react.js +1556 -0
- package/package.json +64 -39
- package/schemas/pack.schema.json +4 -0
- package/schemas/theme.schema.json +857 -0
- package/dist/codegen/theme-codegen.d.ts +0 -12
- package/dist/codegen/theme-codegen.d.ts.map +0 -1
- package/dist/codegen/theme-codegen.js +0 -153
- package/dist/codegen/theme-codegen.js.map +0 -1
- package/dist/commands/add.d.ts +0 -2
- package/dist/commands/add.d.ts.map +0 -1
- package/dist/commands/add.js +0 -120
- package/dist/commands/add.js.map +0 -1
- package/dist/commands/diff.d.ts +0 -2
- package/dist/commands/diff.d.ts.map +0 -1
- package/dist/commands/diff.js +0 -103
- package/dist/commands/diff.js.map +0 -1
- package/dist/commands/generate.d.ts +0 -12
- package/dist/commands/generate.d.ts.map +0 -1
- package/dist/commands/generate.js +0 -96
- package/dist/commands/generate.js.map +0 -1
- package/dist/commands/init.d.ts +0 -2
- package/dist/commands/init.d.ts.map +0 -1
- package/dist/commands/init.js +0 -79
- package/dist/commands/init.js.map +0 -1
- package/dist/commands/list.d.ts +0 -14
- package/dist/commands/list.d.ts.map +0 -1
- package/dist/commands/list.js +0 -93
- package/dist/commands/list.js.map +0 -1
- package/dist/commands/remove.d.ts +0 -2
- package/dist/commands/remove.d.ts.map +0 -1
- package/dist/commands/remove.js +0 -71
- package/dist/commands/remove.js.map +0 -1
- package/dist/commands/theme.d.ts +0 -31
- package/dist/commands/theme.d.ts.map +0 -1
- package/dist/commands/theme.js +0 -142
- package/dist/commands/theme.js.map +0 -1
- package/dist/commands/update.d.ts +0 -2
- package/dist/commands/update.d.ts.map +0 -1
- package/dist/commands/update.js +0 -123
- package/dist/commands/update.js.map +0 -1
- package/dist/core/alias-resolver.d.ts +0 -24
- package/dist/core/alias-resolver.d.ts.map +0 -1
- package/dist/core/alias-resolver.js +0 -87
- package/dist/core/alias-resolver.js.map +0 -1
- package/dist/core/config.d.ts +0 -21
- package/dist/core/config.d.ts.map +0 -1
- package/dist/core/config.js +0 -43
- package/dist/core/config.js.map +0 -1
- package/dist/core/file-writer.d.ts +0 -14
- package/dist/core/file-writer.d.ts.map +0 -1
- package/dist/core/file-writer.js +0 -90
- package/dist/core/file-writer.js.map +0 -1
- package/dist/core/package-manager.d.ts +0 -3
- package/dist/core/package-manager.d.ts.map +0 -1
- package/dist/core/package-manager.js +0 -17
- package/dist/core/package-manager.js.map +0 -1
- package/dist/core/registry.d.ts +0 -18
- package/dist/core/registry.d.ts.map +0 -1
- package/dist/core/registry.js +0 -69
- package/dist/core/registry.js.map +0 -1
- package/dist/core/theme-manager.d.ts +0 -35
- package/dist/core/theme-manager.d.ts.map +0 -1
- package/dist/core/theme-manager.js +0 -94
- package/dist/core/theme-manager.js.map +0 -1
- package/dist/core/utils.d.ts +0 -22
- package/dist/core/utils.d.ts.map +0 -1
- package/dist/core/utils.js +0 -44
- package/dist/core/utils.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/types.d.ts +0 -121
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -198
- package/dist/types.js.map +0 -1
package/dist/types.d.ts
DELETED
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const SEMANTIC_SOUND_NAMES: readonly ["success", "error", "warning", "info", "click", "back", "enter", "delete", "copy", "paste", "scroll", "hover", "toggle", "notify", "complete", "loading", "tap", "press", "release", "drag", "drop", "select", "deselect", "focus", "blur", "forward", "open", "close", "expand", "collapse", "tab", "swipe", "confirm", "cancel", "deny", "undo", "redo", "alert", "message", "reminder", "mention", "show", "hide", "slide", "fade", "pop", "clear", "remove", "trash", "shred", "upload", "download", "refresh", "sync", "process", "cut", "snapshot", "lock", "unlock", "enable", "disable", "connect", "disconnect", "mute", "unmute", "record", "capture"];
|
|
3
|
-
export type SemanticSoundName = (typeof SEMANTIC_SOUND_NAMES)[number];
|
|
4
|
-
export declare const CATEGORY_NAMES: readonly ["interaction", "navigation", "feedback", "notification", "transition", "destructive", "progress", "clipboard", "state", "media"];
|
|
5
|
-
export type CategoryName = (typeof CATEGORY_NAMES)[number];
|
|
6
|
-
export declare const SEMANTIC_SOUND_CATEGORIES: Record<SemanticSoundName, CategoryName>;
|
|
7
|
-
export type PackageManager = "bun" | "pnpm" | "yarn" | "npm";
|
|
8
|
-
export declare const audxConfigSchema: z.ZodObject<{
|
|
9
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
10
|
-
soundDir: z.ZodString;
|
|
11
|
-
libDir: z.ZodString;
|
|
12
|
-
registryUrl: z.ZodString;
|
|
13
|
-
packageManager: z.ZodEnum<["npm", "pnpm", "yarn", "bun"]>;
|
|
14
|
-
aliases: z.ZodObject<{
|
|
15
|
-
lib: z.ZodString;
|
|
16
|
-
hooks: z.ZodString;
|
|
17
|
-
sounds: z.ZodString;
|
|
18
|
-
}, "strip", z.ZodTypeAny, {
|
|
19
|
-
lib: string;
|
|
20
|
-
hooks: string;
|
|
21
|
-
sounds: string;
|
|
22
|
-
}, {
|
|
23
|
-
lib: string;
|
|
24
|
-
hooks: string;
|
|
25
|
-
sounds: string;
|
|
26
|
-
}>;
|
|
27
|
-
installedSounds: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
29
|
-
installedAt: z.ZodString;
|
|
30
|
-
}, "strip", z.ZodTypeAny, {
|
|
31
|
-
files: string[];
|
|
32
|
-
installedAt: string;
|
|
33
|
-
}, {
|
|
34
|
-
files: string[];
|
|
35
|
-
installedAt: string;
|
|
36
|
-
}>>;
|
|
37
|
-
}, "strip", z.ZodTypeAny, {
|
|
38
|
-
soundDir: string;
|
|
39
|
-
libDir: string;
|
|
40
|
-
registryUrl: string;
|
|
41
|
-
packageManager: "bun" | "pnpm" | "yarn" | "npm";
|
|
42
|
-
aliases: {
|
|
43
|
-
lib: string;
|
|
44
|
-
hooks: string;
|
|
45
|
-
sounds: string;
|
|
46
|
-
};
|
|
47
|
-
installedSounds: Record<string, {
|
|
48
|
-
files: string[];
|
|
49
|
-
installedAt: string;
|
|
50
|
-
}>;
|
|
51
|
-
$schema?: string | undefined;
|
|
52
|
-
}, {
|
|
53
|
-
soundDir: string;
|
|
54
|
-
libDir: string;
|
|
55
|
-
registryUrl: string;
|
|
56
|
-
packageManager: "bun" | "pnpm" | "yarn" | "npm";
|
|
57
|
-
aliases: {
|
|
58
|
-
lib: string;
|
|
59
|
-
hooks: string;
|
|
60
|
-
sounds: string;
|
|
61
|
-
};
|
|
62
|
-
installedSounds: Record<string, {
|
|
63
|
-
files: string[];
|
|
64
|
-
installedAt: string;
|
|
65
|
-
}>;
|
|
66
|
-
$schema?: string | undefined;
|
|
67
|
-
}>;
|
|
68
|
-
export type AudxConfig = z.infer<typeof audxConfigSchema>;
|
|
69
|
-
export declare const themeConfigSchema: z.ZodObject<{
|
|
70
|
-
activeTheme: z.ZodString;
|
|
71
|
-
themes: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>;
|
|
72
|
-
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
activeTheme: string;
|
|
74
|
-
themes: Record<string, Record<string, string | null>>;
|
|
75
|
-
}, {
|
|
76
|
-
activeTheme: string;
|
|
77
|
-
themes: Record<string, Record<string, string | null>>;
|
|
78
|
-
}>;
|
|
79
|
-
export type ThemeConfig = z.infer<typeof themeConfigSchema>;
|
|
80
|
-
export interface RegistryFile {
|
|
81
|
-
path: string;
|
|
82
|
-
content: string;
|
|
83
|
-
type: string;
|
|
84
|
-
}
|
|
85
|
-
export interface RegistryItem {
|
|
86
|
-
$schema: string;
|
|
87
|
-
name: string;
|
|
88
|
-
type: string;
|
|
89
|
-
title: string;
|
|
90
|
-
author?: string;
|
|
91
|
-
description: string;
|
|
92
|
-
files: RegistryFile[];
|
|
93
|
-
meta?: {
|
|
94
|
-
duration: number;
|
|
95
|
-
format: string;
|
|
96
|
-
sizeKb: number;
|
|
97
|
-
license: string;
|
|
98
|
-
tags: string[];
|
|
99
|
-
theme?: string;
|
|
100
|
-
semanticName?: string;
|
|
101
|
-
};
|
|
102
|
-
}
|
|
103
|
-
export interface RegistryCatalog {
|
|
104
|
-
$schema: string;
|
|
105
|
-
name: string;
|
|
106
|
-
homepage: string;
|
|
107
|
-
items: RegistryItem[];
|
|
108
|
-
}
|
|
109
|
-
export interface AliasMap {
|
|
110
|
-
hasAliases: boolean;
|
|
111
|
-
patterns: Array<{
|
|
112
|
-
alias: string;
|
|
113
|
-
paths: string[];
|
|
114
|
-
}>;
|
|
115
|
-
}
|
|
116
|
-
export interface GenerateSoundParams {
|
|
117
|
-
text: string;
|
|
118
|
-
duration_seconds?: number;
|
|
119
|
-
prompt_influence?: number;
|
|
120
|
-
}
|
|
121
|
-
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,oBAAoB,4oBA+EvB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAItE,eAAO,MAAM,cAAc,4IAWjB,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAC;AAE3D,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAC7C,iBAAiB,EACjB,YAAY,CAgFZ,CAAC;AAIF,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,CAAC;AAI7D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB3B,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAI1D,eAAO,MAAM,iBAAiB;;;;;;;;;EAG5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAI5D,MAAM,WAAW,YAAY;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,YAAY;IAC5B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,IAAI,CAAC,EAAE;QACN,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,MAAM,EAAE,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,YAAY,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;CACF;AAED,MAAM,WAAW,eAAe;IAC/B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,YAAY,EAAE,CAAC;CACtB;AAID,MAAM,WAAW,QAAQ;IACxB,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC;QACf,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE,MAAM,EAAE,CAAC;KAChB,CAAC,CAAC;CACH;AAID,MAAM,WAAW,mBAAmB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC1B"}
|
package/dist/types.js
DELETED
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
// ── Semantic Sound Names ────────────────────────────────────────────────────
|
|
3
|
-
export const SEMANTIC_SOUND_NAMES = [
|
|
4
|
-
// Existing (16)
|
|
5
|
-
"success",
|
|
6
|
-
"error",
|
|
7
|
-
"warning",
|
|
8
|
-
"info",
|
|
9
|
-
"click",
|
|
10
|
-
"back",
|
|
11
|
-
"enter",
|
|
12
|
-
"delete",
|
|
13
|
-
"copy",
|
|
14
|
-
"paste",
|
|
15
|
-
"scroll",
|
|
16
|
-
"hover",
|
|
17
|
-
"toggle",
|
|
18
|
-
"notify",
|
|
19
|
-
"complete",
|
|
20
|
-
"loading",
|
|
21
|
-
// Interaction (9)
|
|
22
|
-
"tap",
|
|
23
|
-
"press",
|
|
24
|
-
"release",
|
|
25
|
-
"drag",
|
|
26
|
-
"drop",
|
|
27
|
-
"select",
|
|
28
|
-
"deselect",
|
|
29
|
-
"focus",
|
|
30
|
-
"blur",
|
|
31
|
-
// Navigation (7)
|
|
32
|
-
"forward",
|
|
33
|
-
"open",
|
|
34
|
-
"close",
|
|
35
|
-
"expand",
|
|
36
|
-
"collapse",
|
|
37
|
-
"tab",
|
|
38
|
-
"swipe",
|
|
39
|
-
// Feedback (5)
|
|
40
|
-
"confirm",
|
|
41
|
-
"cancel",
|
|
42
|
-
"deny",
|
|
43
|
-
"undo",
|
|
44
|
-
"redo",
|
|
45
|
-
// Notification (4)
|
|
46
|
-
"alert",
|
|
47
|
-
"message",
|
|
48
|
-
"reminder",
|
|
49
|
-
"mention",
|
|
50
|
-
// Transition (5)
|
|
51
|
-
"show",
|
|
52
|
-
"hide",
|
|
53
|
-
"slide",
|
|
54
|
-
"fade",
|
|
55
|
-
"pop",
|
|
56
|
-
// Destructive (4)
|
|
57
|
-
"clear",
|
|
58
|
-
"remove",
|
|
59
|
-
"trash",
|
|
60
|
-
"shred",
|
|
61
|
-
// Progress (5)
|
|
62
|
-
"upload",
|
|
63
|
-
"download",
|
|
64
|
-
"refresh",
|
|
65
|
-
"sync",
|
|
66
|
-
"process",
|
|
67
|
-
// Clipboard (2)
|
|
68
|
-
"cut",
|
|
69
|
-
"snapshot",
|
|
70
|
-
// State (6)
|
|
71
|
-
"lock",
|
|
72
|
-
"unlock",
|
|
73
|
-
"enable",
|
|
74
|
-
"disable",
|
|
75
|
-
"connect",
|
|
76
|
-
"disconnect",
|
|
77
|
-
// Media (4)
|
|
78
|
-
"mute",
|
|
79
|
-
"unmute",
|
|
80
|
-
"record",
|
|
81
|
-
"capture",
|
|
82
|
-
];
|
|
83
|
-
// ── Category Metadata ───────────────────────────────────────────────────────
|
|
84
|
-
export const CATEGORY_NAMES = [
|
|
85
|
-
"interaction",
|
|
86
|
-
"navigation",
|
|
87
|
-
"feedback",
|
|
88
|
-
"notification",
|
|
89
|
-
"transition",
|
|
90
|
-
"destructive",
|
|
91
|
-
"progress",
|
|
92
|
-
"clipboard",
|
|
93
|
-
"state",
|
|
94
|
-
"media",
|
|
95
|
-
];
|
|
96
|
-
export const SEMANTIC_SOUND_CATEGORIES = {
|
|
97
|
-
// Existing (16) — mapped to closest categories
|
|
98
|
-
success: "feedback",
|
|
99
|
-
error: "feedback",
|
|
100
|
-
warning: "feedback",
|
|
101
|
-
info: "notification",
|
|
102
|
-
click: "interaction",
|
|
103
|
-
back: "navigation",
|
|
104
|
-
enter: "interaction",
|
|
105
|
-
delete: "destructive",
|
|
106
|
-
copy: "clipboard",
|
|
107
|
-
paste: "clipboard",
|
|
108
|
-
scroll: "navigation",
|
|
109
|
-
hover: "interaction",
|
|
110
|
-
toggle: "interaction",
|
|
111
|
-
notify: "notification",
|
|
112
|
-
complete: "feedback",
|
|
113
|
-
loading: "progress",
|
|
114
|
-
// Interaction (9)
|
|
115
|
-
tap: "interaction",
|
|
116
|
-
press: "interaction",
|
|
117
|
-
release: "interaction",
|
|
118
|
-
drag: "interaction",
|
|
119
|
-
drop: "interaction",
|
|
120
|
-
select: "interaction",
|
|
121
|
-
deselect: "interaction",
|
|
122
|
-
focus: "interaction",
|
|
123
|
-
blur: "interaction",
|
|
124
|
-
// Navigation (7)
|
|
125
|
-
forward: "navigation",
|
|
126
|
-
open: "navigation",
|
|
127
|
-
close: "navigation",
|
|
128
|
-
expand: "navigation",
|
|
129
|
-
collapse: "navigation",
|
|
130
|
-
tab: "navigation",
|
|
131
|
-
swipe: "navigation",
|
|
132
|
-
// Feedback (5)
|
|
133
|
-
confirm: "feedback",
|
|
134
|
-
cancel: "feedback",
|
|
135
|
-
deny: "feedback",
|
|
136
|
-
undo: "feedback",
|
|
137
|
-
redo: "feedback",
|
|
138
|
-
// Notification (4)
|
|
139
|
-
alert: "notification",
|
|
140
|
-
message: "notification",
|
|
141
|
-
reminder: "notification",
|
|
142
|
-
mention: "notification",
|
|
143
|
-
// Transition (5)
|
|
144
|
-
show: "transition",
|
|
145
|
-
hide: "transition",
|
|
146
|
-
slide: "transition",
|
|
147
|
-
fade: "transition",
|
|
148
|
-
pop: "transition",
|
|
149
|
-
// Destructive (4)
|
|
150
|
-
clear: "destructive",
|
|
151
|
-
remove: "destructive",
|
|
152
|
-
trash: "destructive",
|
|
153
|
-
shred: "destructive",
|
|
154
|
-
// Progress (5)
|
|
155
|
-
upload: "progress",
|
|
156
|
-
download: "progress",
|
|
157
|
-
refresh: "progress",
|
|
158
|
-
sync: "progress",
|
|
159
|
-
process: "progress",
|
|
160
|
-
// Clipboard (2)
|
|
161
|
-
cut: "clipboard",
|
|
162
|
-
snapshot: "clipboard",
|
|
163
|
-
// State (6)
|
|
164
|
-
lock: "state",
|
|
165
|
-
unlock: "state",
|
|
166
|
-
enable: "state",
|
|
167
|
-
disable: "state",
|
|
168
|
-
connect: "state",
|
|
169
|
-
disconnect: "state",
|
|
170
|
-
// Media (4)
|
|
171
|
-
mute: "media",
|
|
172
|
-
unmute: "media",
|
|
173
|
-
record: "media",
|
|
174
|
-
capture: "media",
|
|
175
|
-
};
|
|
176
|
-
// ── AudxConfig (audx.config.json) ───────────────────────────────────────────
|
|
177
|
-
export const audxConfigSchema = z.object({
|
|
178
|
-
$schema: z.string().optional(),
|
|
179
|
-
soundDir: z.string(),
|
|
180
|
-
libDir: z.string(),
|
|
181
|
-
registryUrl: z.string().url(),
|
|
182
|
-
packageManager: z.enum(["npm", "pnpm", "yarn", "bun"]),
|
|
183
|
-
aliases: z.object({
|
|
184
|
-
lib: z.string(),
|
|
185
|
-
hooks: z.string(),
|
|
186
|
-
sounds: z.string(),
|
|
187
|
-
}),
|
|
188
|
-
installedSounds: z.record(z.string(), z.object({
|
|
189
|
-
files: z.array(z.string()),
|
|
190
|
-
installedAt: z.string().datetime(),
|
|
191
|
-
})),
|
|
192
|
-
});
|
|
193
|
-
// ── ThemeConfig (audx.themes.json) ──────────────────────────────────────────
|
|
194
|
-
export const themeConfigSchema = z.object({
|
|
195
|
-
activeTheme: z.string(),
|
|
196
|
-
themes: z.record(z.string(), z.record(z.string(), z.string().nullable())),
|
|
197
|
-
});
|
|
198
|
-
//# sourceMappingURL=types.js.map
|
package/dist/types.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|