@shell-shock/plugin-prompts 0.2.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/package.json ADDED
@@ -0,0 +1,158 @@
1
+ {
2
+ "name": "@shell-shock/plugin-prompts",
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "description": "A package containing a Shell Shock plugin to generate the `prompts` built-in module.",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/storm-software/shell-shock.git",
9
+ "directory": "packages/plugin-prompts"
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/prompts-builtin": {
73
+ "require": {
74
+ "types": "./dist/components/prompts-builtin.d.cts",
75
+ "default": "./dist/components/prompts-builtin.cjs"
76
+ },
77
+ "import": {
78
+ "types": "./dist/components/prompts-builtin.d.mts",
79
+ "default": "./dist/components/prompts-builtin.mjs"
80
+ },
81
+ "default": {
82
+ "types": "./dist/components/prompts-builtin.d.mts",
83
+ "default": "./dist/components/prompts-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.11",
133
+ "@shell-shock/plugin-theme": "^0.2.2",
134
+ "@shell-shock/preset-script": "^0.6.10",
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": "1137a1ee3be5bb927dc9b15e118f804fd09a24b4"
158
+ }