@shell-shock/preset-script 0.6.19 → 0.6.21
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/components/bin-entry.cjs +3 -9
- package/dist/components/bin-entry.cjs.map +1 -1
- package/dist/components/bin-entry.mjs +3 -9
- package/dist/components/bin-entry.mjs.map +1 -1
- package/dist/components/command-router.cjs +1 -6
- package/dist/components/command-router.cjs.map +1 -1
- package/dist/components/command-router.mjs +1 -6
- package/dist/components/command-router.mjs.map +1 -1
- package/dist/components/exit-function-declaration.d.cts +2 -2
- package/dist/components/exit-function-declaration.d.mts +2 -2
- package/dist/components/help.cjs +1 -1
- package/dist/components/help.cjs.map +1 -1
- package/dist/components/help.d.cts +7 -7
- package/dist/components/help.d.mts +7 -7
- package/dist/components/help.mjs +1 -1
- package/dist/components/help.mjs.map +1 -1
- package/dist/components/helpers.d.cts +5 -5
- package/dist/components/helpers.d.mts +5 -5
- package/dist/components/virtual-command-entry.cjs +3 -9
- package/dist/components/virtual-command-entry.cjs.map +1 -1
- package/dist/components/virtual-command-entry.mjs +3 -9
- package/dist/components/virtual-command-entry.mjs.map +1 -1
- package/dist/index.cjs +0 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +0 -3
- package/dist/index.mjs.map +1 -1
- package/dist/types/plugin.d.mts.map +1 -1
- package/package.json +34 -34
package/package.json
CHANGED
|
@@ -1,18 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/preset-script",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.6.21",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "A Shell Shock preset that generates a fully-featured script application.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"shell-shock",
|
|
8
|
+
"shell-shock-plugin",
|
|
9
|
+
"powerlines",
|
|
10
|
+
"storm-software"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://stormsoftware.com",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://stormsoftware.com/support",
|
|
15
|
+
"email": "support@stormsoftware.com"
|
|
16
|
+
},
|
|
6
17
|
"repository": {
|
|
7
18
|
"type": "github",
|
|
8
19
|
"url": "https://github.com/storm-software/shell-shock.git",
|
|
9
20
|
"directory": "packages/preset-script"
|
|
10
21
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"url": "https://
|
|
14
|
-
"email": "support@stormsoftware.com"
|
|
22
|
+
"funding": {
|
|
23
|
+
"type": "github",
|
|
24
|
+
"url": "https://github.com/sponsors/storm-software"
|
|
15
25
|
},
|
|
26
|
+
"license": "Apache-2.0",
|
|
16
27
|
"author": {
|
|
17
28
|
"name": "Storm Software",
|
|
18
29
|
"email": "contact@stormsoftware.com",
|
|
@@ -32,14 +43,7 @@
|
|
|
32
43
|
"url": "https://stormsoftware.com"
|
|
33
44
|
}
|
|
34
45
|
],
|
|
35
|
-
"
|
|
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",
|
|
46
|
+
"type": "module",
|
|
43
47
|
"exports": {
|
|
44
48
|
".": {
|
|
45
49
|
"require": {
|
|
@@ -55,6 +59,7 @@
|
|
|
55
59
|
"default": "./dist/index.mjs"
|
|
56
60
|
}
|
|
57
61
|
},
|
|
62
|
+
"./*": "./*",
|
|
58
63
|
"./components": {
|
|
59
64
|
"require": {
|
|
60
65
|
"types": "./dist/components/index.d.cts",
|
|
@@ -195,7 +200,6 @@
|
|
|
195
200
|
"default": "./dist/helpers/get-default-options.mjs"
|
|
196
201
|
}
|
|
197
202
|
},
|
|
198
|
-
"./package.json": "./package.json",
|
|
199
203
|
"./types": {
|
|
200
204
|
"require": {
|
|
201
205
|
"types": "./dist/types/index.d.cts",
|
|
@@ -225,35 +229,31 @@
|
|
|
225
229
|
}
|
|
226
230
|
}
|
|
227
231
|
},
|
|
232
|
+
"main": "./dist/index.cjs",
|
|
233
|
+
"module": "./dist/index.mjs",
|
|
228
234
|
"types": "./dist/index.d.cts",
|
|
229
235
|
"typings": "dist/index.d.mts",
|
|
230
236
|
"files": ["dist/**/*"],
|
|
231
|
-
"keywords": [
|
|
232
|
-
"shell-shock",
|
|
233
|
-
"shell-shock-plugin",
|
|
234
|
-
"powerlines",
|
|
235
|
-
"storm-software"
|
|
236
|
-
],
|
|
237
237
|
"dependencies": {
|
|
238
238
|
"@alloy-js/core": "0.23.0-dev.8",
|
|
239
239
|
"@alloy-js/typescript": "0.23.0-dev.4",
|
|
240
|
-
"@powerlines/deepkit": "^0.6.
|
|
241
|
-
"@powerlines/plugin-alloy": "^0.23.
|
|
242
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
243
|
-
"@shell-shock/core": "^0.
|
|
244
|
-
"@shell-shock/plugin-
|
|
240
|
+
"@powerlines/deepkit": "^0.6.88",
|
|
241
|
+
"@powerlines/plugin-alloy": "^0.23.40",
|
|
242
|
+
"@powerlines/plugin-plugin": "^0.12.260",
|
|
243
|
+
"@shell-shock/core": "^0.10.0",
|
|
244
|
+
"@shell-shock/plugin-console": "^0.1.6",
|
|
245
|
+
"@shell-shock/plugin-theme": "^0.3.10",
|
|
245
246
|
"@stryke/helpers": "^0.9.42",
|
|
246
|
-
"@stryke/path": "0.26.6",
|
|
247
|
-
"@stryke/string-format": "0.14.2",
|
|
248
|
-
"defu": "6.1.4",
|
|
249
|
-
"powerlines": "^0.
|
|
250
|
-
"@shell-shock/plugin-console": "^0.1.4"
|
|
247
|
+
"@stryke/path": "^0.26.6",
|
|
248
|
+
"@stryke/string-format": "^0.14.2",
|
|
249
|
+
"defu": "^6.1.4",
|
|
250
|
+
"powerlines": "^0.39.17"
|
|
251
251
|
},
|
|
252
252
|
"devDependencies": {
|
|
253
253
|
"@babel/core": "^7.29.0",
|
|
254
|
-
"@powerlines/plugin-alloy": "^0.23.
|
|
255
|
-
"@types/node": "^25.3.
|
|
254
|
+
"@powerlines/plugin-alloy": "^0.23.40",
|
|
255
|
+
"@types/node": "^25.3.3"
|
|
256
256
|
},
|
|
257
257
|
"publishConfig": { "access": "public" },
|
|
258
|
-
"gitHead": "
|
|
258
|
+
"gitHead": "d0abdaa95b5e40df2157d393f0ba8499589140ca"
|
|
259
259
|
}
|