@powerlines/plugin-alloy 0.26.114 → 0.26.115
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 +23 -24
package/package.json
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-alloy",
|
|
3
|
-
"version": "0.26.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "0.26.115",
|
|
5
4
|
"description": "A package containing various Alloy framework components and helper utilities.",
|
|
5
|
+
"keywords": ["alloy-js", "powerlines", "powerlines-plugin"],
|
|
6
|
+
"homepage": "https://stormsoftware.com",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://stormsoftware.com/support",
|
|
9
|
+
"email": "support@stormsoftware.com"
|
|
10
|
+
},
|
|
6
11
|
"repository": {
|
|
7
12
|
"type": "github",
|
|
8
13
|
"url": "https://github.com/storm-software/powerlines.git",
|
|
9
14
|
"directory": "packages/plugins/plugin-alloy"
|
|
10
15
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"url": "https://
|
|
14
|
-
"email": "support@stormsoftware.com"
|
|
16
|
+
"funding": {
|
|
17
|
+
"type": "github",
|
|
18
|
+
"url": "https://github.com/sponsors/storm-software"
|
|
15
19
|
},
|
|
20
|
+
"license": "Apache-2.0",
|
|
16
21
|
"author": {
|
|
17
22
|
"name": "Storm Software",
|
|
18
23
|
"email": "contact@stormsoftware.com",
|
|
@@ -32,14 +37,7 @@
|
|
|
32
37
|
"url": "https://stormsoftware.com"
|
|
33
38
|
}
|
|
34
39
|
],
|
|
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",
|
|
40
|
+
"type": "module",
|
|
43
41
|
"exports": {
|
|
44
42
|
".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" },
|
|
45
43
|
"./core": {
|
|
@@ -284,19 +282,19 @@
|
|
|
284
282
|
},
|
|
285
283
|
"./package.json": "./package.json"
|
|
286
284
|
},
|
|
285
|
+
"main": "./dist/index.cjs",
|
|
286
|
+
"module": "./dist/index.mjs",
|
|
287
287
|
"types": "./dist/index.d.cts",
|
|
288
288
|
"typings": "./dist/index.d.mts",
|
|
289
|
-
"files": ["dist
|
|
290
|
-
"keywords": ["alloy-js", "powerlines", "storm-software", "powerlines-plugin"],
|
|
289
|
+
"files": ["dist"],
|
|
291
290
|
"dependencies": {
|
|
292
|
-
"@babel/preset-typescript": "8.0.0-rc.5",
|
|
293
|
-
"@alloy-js/babel-preset": "^0.3.0",
|
|
294
291
|
"@alloy-js/core": "^0.23.1",
|
|
295
292
|
"@alloy-js/json": "^0.23.0",
|
|
296
293
|
"@alloy-js/markdown": "^0.23.0",
|
|
297
294
|
"@alloy-js/typescript": "^0.23.0",
|
|
298
|
-
"@
|
|
299
|
-
"@powerlines/
|
|
295
|
+
"@babel/preset-typescript": "8.0.0-rc.5",
|
|
296
|
+
"@powerlines/deepkit": "^0.9.11",
|
|
297
|
+
"@powerlines/plugin-babel": "^0.13.28",
|
|
300
298
|
"@storm-software/config-tools": "^1.190.20",
|
|
301
299
|
"@stryke/capnp": "^0.12.102",
|
|
302
300
|
"@stryke/convert": "^0.7.7",
|
|
@@ -309,15 +307,16 @@
|
|
|
309
307
|
"@stryke/types": "^0.12.4",
|
|
310
308
|
"@stryke/unique-id": "^0.3.87",
|
|
311
309
|
"defu": "^6.1.7",
|
|
312
|
-
"powerlines": "^0.47.
|
|
310
|
+
"powerlines": "^0.47.32",
|
|
313
311
|
"prettier": "^3.8.3",
|
|
314
312
|
"unctx": "^2.5.0"
|
|
315
313
|
},
|
|
316
314
|
"devDependencies": {
|
|
317
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
315
|
+
"@powerlines/plugin-plugin": "^0.12.444",
|
|
318
316
|
"@types/node": "^25.8.0"
|
|
319
317
|
},
|
|
320
|
-
"peerDependencies": { "@babel
|
|
318
|
+
"peerDependencies": { "@alloy-js/babel-preset": ">=0.3.0" },
|
|
319
|
+
"peerDependenciesMeta": { "@alloy-js/babel-preset": { "optional": false } },
|
|
321
320
|
"publishConfig": { "access": "public" },
|
|
322
|
-
"gitHead": "
|
|
321
|
+
"gitHead": "376dbbb335d354fb03d8ef3b610cc27735cbf250"
|
|
323
322
|
}
|