@shell-shock/plugin-console 0.0.2

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.
@@ -0,0 +1,2 @@
1
+ import { ConsolePluginContext, ConsolePluginOptions, ConsolePluginResolvedConfig, ConsolePluginUserConfig } from "./plugin.mjs";
2
+ export { ConsolePluginContext, ConsolePluginOptions, ConsolePluginResolvedConfig, ConsolePluginUserConfig };
@@ -0,0 +1 @@
1
+ export { };
File without changes
@@ -0,0 +1,13 @@
1
+ import { AlloyPluginContext } from "@powerlines/plugin-alloy/types";
2
+ import { ResolvedConfig } from "@shell-shock/core/types/config";
3
+ import { Context } from "@shell-shock/core/types/context";
4
+ import { ThemePluginContext, ThemePluginOptions, ThemePluginResolvedConfig, ThemePluginUserConfig } from "@shell-shock/plugin-theme/types/plugin";
5
+
6
+ //#region src/types/plugin.d.ts
7
+ interface ConsolePluginOptions extends ThemePluginOptions {}
8
+ type ConsolePluginUserConfig = ThemePluginUserConfig & {};
9
+ type ConsolePluginResolvedConfig = ResolvedConfig & ThemePluginResolvedConfig;
10
+ type ConsolePluginContext<TResolvedConfig extends ConsolePluginResolvedConfig = ConsolePluginResolvedConfig> = AlloyPluginContext<TResolvedConfig> & ThemePluginContext<TResolvedConfig> & Context<TResolvedConfig>;
11
+ //#endregion
12
+ export { ConsolePluginContext, ConsolePluginOptions, ConsolePluginResolvedConfig, ConsolePluginUserConfig };
13
+ //# sourceMappingURL=plugin.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;;UA4BiB,oBAAA,SAA6B;AAA7B,KAEL,uBAAA,GAA0B,qBAF0B,GAAA,CAAA,CAAA;AAEpD,KAEA,2BAAA,GAA8B,cAFJ,GAGpC,yBAHyD;AAE/C,KAGA,oBAHA,CAAA,wBAIc,2BAHxB,GAIE,2BAJuB,CAAA,GAKvB,kBALuB,CAKJ,eALI,CAAA,GAMzB,kBANyB,CAMN,eANM,CAAA,GAOzB,OAPyB,CAOjB,eAPiB,CAAA"}
@@ -0,0 +1,13 @@
1
+ import { AlloyPluginContext } from "@powerlines/plugin-alloy/types";
2
+ import { ResolvedConfig } from "@shell-shock/core/types/config";
3
+ import { Context } from "@shell-shock/core/types/context";
4
+ import { ThemePluginContext, ThemePluginOptions, ThemePluginResolvedConfig, ThemePluginUserConfig } from "@shell-shock/plugin-theme/types/plugin";
5
+
6
+ //#region src/types/plugin.d.ts
7
+ interface ConsolePluginOptions extends ThemePluginOptions {}
8
+ type ConsolePluginUserConfig = ThemePluginUserConfig & {};
9
+ type ConsolePluginResolvedConfig = ResolvedConfig & ThemePluginResolvedConfig;
10
+ type ConsolePluginContext<TResolvedConfig extends ConsolePluginResolvedConfig = ConsolePluginResolvedConfig> = AlloyPluginContext<TResolvedConfig> & ThemePluginContext<TResolvedConfig> & Context<TResolvedConfig>;
11
+ //#endregion
12
+ export { ConsolePluginContext, ConsolePluginOptions, ConsolePluginResolvedConfig, ConsolePluginUserConfig };
13
+ //# sourceMappingURL=plugin.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;;UA4BiB,oBAAA,SAA6B;AAA7B,KAEL,uBAAA,GAA0B,qBAF0B,GAAA,CAAA,CAAA;AAEpD,KAEA,2BAAA,GAA8B,cAFJ,GAGpC,yBAHyD;AAE/C,KAGA,oBAHA,CAAA,wBAIc,2BAHxB,GAIE,2BAJuB,CAAA,GAKvB,kBALuB,CAKJ,eALI,CAAA,GAMzB,kBANyB,CAMN,eANM,CAAA,GAOzB,OAPyB,CAOjB,eAPiB,CAAA"}
@@ -0,0 +1 @@
1
+ export { };
package/package.json ADDED
@@ -0,0 +1,158 @@
1
+ {
2
+ "name": "@shell-shock/plugin-console",
3
+ "version": "0.0.2",
4
+ "type": "module",
5
+ "description": "A package containing a Shell Shock plugin to generate the `console` built-in module.",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/storm-software/shell-shock.git",
9
+ "directory": "packages/plugin-console"
10
+ },
11
+ "homepage": "https://stormsoftware.com",
12
+ "bugs": {
13
+ "url": "https://stormsoftware.com/support",
14
+ "email": "support@stormsoftware.com"
15
+ },
16
+ "author": {
17
+ "name": "Storm Software",
18
+ "email": "contact@stormsoftware.com",
19
+ "url": "https://stormsoftware.com"
20
+ },
21
+ "maintainers": [
22
+ {
23
+ "name": "Storm Software",
24
+ "email": "contact@stormsoftware.com",
25
+ "url": "https://stormsoftware.com"
26
+ }
27
+ ],
28
+ "contributors": [
29
+ {
30
+ "name": "Storm Software",
31
+ "email": "contact@stormsoftware.com",
32
+ "url": "https://stormsoftware.com"
33
+ }
34
+ ],
35
+ "funding": {
36
+ "type": "github",
37
+ "url": "https://github.com/sponsors/storm-software"
38
+ },
39
+ "license": "Apache-2.0",
40
+ "private": false,
41
+ "main": "./dist/index.cjs",
42
+ "module": "./dist/index.mjs",
43
+ "exports": {
44
+ ".": {
45
+ "require": {
46
+ "types": "./dist/index.d.cts",
47
+ "default": "./dist/index.cjs"
48
+ },
49
+ "import": {
50
+ "types": "./dist/index.d.mts",
51
+ "default": "./dist/index.mjs"
52
+ },
53
+ "default": {
54
+ "types": "./dist/index.d.mts",
55
+ "default": "./dist/index.mjs"
56
+ }
57
+ },
58
+ "./components": {
59
+ "require": {
60
+ "types": "./dist/components/index.d.cts",
61
+ "default": "./dist/components/index.cjs"
62
+ },
63
+ "import": {
64
+ "types": "./dist/components/index.d.mts",
65
+ "default": "./dist/components/index.mjs"
66
+ },
67
+ "default": {
68
+ "types": "./dist/components/index.d.mts",
69
+ "default": "./dist/components/index.mjs"
70
+ }
71
+ },
72
+ "./components/console-builtin": {
73
+ "require": {
74
+ "types": "./dist/components/console-builtin.d.cts",
75
+ "default": "./dist/components/console-builtin.cjs"
76
+ },
77
+ "import": {
78
+ "types": "./dist/components/console-builtin.d.mts",
79
+ "default": "./dist/components/console-builtin.mjs"
80
+ },
81
+ "default": {
82
+ "types": "./dist/components/console-builtin.d.mts",
83
+ "default": "./dist/components/console-builtin.mjs"
84
+ }
85
+ },
86
+ "./package.json": "./package.json",
87
+ "./types": {
88
+ "require": {
89
+ "types": "./dist/types/index.d.cts",
90
+ "default": "./dist/types/index.cjs"
91
+ },
92
+ "import": {
93
+ "types": "./dist/types/index.d.mts",
94
+ "default": "./dist/types/index.mjs"
95
+ },
96
+ "default": {
97
+ "types": "./dist/types/index.d.mts",
98
+ "default": "./dist/types/index.mjs"
99
+ }
100
+ },
101
+ "./types/plugin": {
102
+ "require": {
103
+ "types": "./dist/types/plugin.d.cts",
104
+ "default": "./dist/types/plugin.cjs"
105
+ },
106
+ "import": {
107
+ "types": "./dist/types/plugin.d.mts",
108
+ "default": "./dist/types/plugin.mjs"
109
+ },
110
+ "default": {
111
+ "types": "./dist/types/plugin.d.mts",
112
+ "default": "./dist/types/plugin.mjs"
113
+ }
114
+ }
115
+ },
116
+ "types": "./dist/index.d.cts",
117
+ "typings": "dist/index.d.mts",
118
+ "files": ["dist/**/*"],
119
+ "keywords": [
120
+ "style-dictionary",
121
+ "shell-shock",
122
+ "shell-shock-plugin",
123
+ "powerlines",
124
+ "storm-software"
125
+ ],
126
+ "dependencies": {
127
+ "@alloy-js/core": "0.23.0-dev.8",
128
+ "@alloy-js/typescript": "0.23.0-dev.4",
129
+ "@powerlines/deepkit": "^0.6.66",
130
+ "@powerlines/plugin-alloy": "0.23.16",
131
+ "@powerlines/plugin-plugin": "^0.12.237",
132
+ "@shell-shock/core": "^0.8.12",
133
+ "@shell-shock/plugin-theme": "^0.3.0",
134
+ "@stryke/string-format": "0.14.2",
135
+ "defu": "6.1.4",
136
+ "powerlines": "^0.38.53"
137
+ },
138
+ "devDependencies": {
139
+ "@powerlines/plugin-deepkit": "^0.11.165",
140
+ "@types/node": "^22.19.11"
141
+ },
142
+ "publishConfig": {
143
+ "access": "public",
144
+ "exports": {
145
+ ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
146
+ "./types": {
147
+ "require": "./dist/types/index.cjs",
148
+ "import": "./dist/types/index.mjs"
149
+ },
150
+ "./types/plugin": {
151
+ "require": "./dist/types/plugin.cjs",
152
+ "import": "./dist/types/plugin.mjs"
153
+ },
154
+ "./package.json": "./package.json"
155
+ }
156
+ },
157
+ "gitHead": "a802bf947afd12ce5c0f29aae1d4039c9e4f40f7"
158
+ }