@powerlines/plugin-satori 0.1.464 → 0.1.468
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 +24 -67
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-satori",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.468",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to use Satori to generate SVG files from jsx/tsx components.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "github",
|
|
8
8
|
"url": "https://github.com/storm-software/powerlines.git",
|
|
9
|
-
"directory": "packages/plugin-satori"
|
|
9
|
+
"directory": "packages/plugins/plugin-satori"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://stormsoftware.com",
|
|
12
12
|
"bugs": {
|
|
@@ -41,63 +41,20 @@
|
|
|
41
41
|
"main": "./dist/index.cjs",
|
|
42
42
|
"module": "./dist/index.mjs",
|
|
43
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
|
-
"./package.json": "./package.json",
|
|
44
|
+
".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" },
|
|
59
45
|
"./types": {
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
"default": "./dist/types/index.cjs"
|
|
63
|
-
},
|
|
64
|
-
"import": {
|
|
65
|
-
"types": "./dist/types/index.d.mts",
|
|
66
|
-
"default": "./dist/types/index.mjs"
|
|
67
|
-
},
|
|
68
|
-
"default": {
|
|
69
|
-
"types": "./dist/types/index.d.mts",
|
|
70
|
-
"default": "./dist/types/index.mjs"
|
|
71
|
-
}
|
|
46
|
+
"import": "./dist/types/index.mjs",
|
|
47
|
+
"require": "./dist/types/index.cjs"
|
|
72
48
|
},
|
|
73
49
|
"./types/module": {
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
"default": "./dist/types/module.cjs"
|
|
77
|
-
},
|
|
78
|
-
"import": {
|
|
79
|
-
"types": "./dist/types/module.d.mts",
|
|
80
|
-
"default": "./dist/types/module.mjs"
|
|
81
|
-
},
|
|
82
|
-
"default": {
|
|
83
|
-
"types": "./dist/types/module.d.mts",
|
|
84
|
-
"default": "./dist/types/module.mjs"
|
|
85
|
-
}
|
|
50
|
+
"import": "./dist/types/module.mjs",
|
|
51
|
+
"require": "./dist/types/module.cjs"
|
|
86
52
|
},
|
|
87
53
|
"./types/plugin": {
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"import": {
|
|
93
|
-
"types": "./dist/types/plugin.d.mts",
|
|
94
|
-
"default": "./dist/types/plugin.mjs"
|
|
95
|
-
},
|
|
96
|
-
"default": {
|
|
97
|
-
"types": "./dist/types/plugin.d.mts",
|
|
98
|
-
"default": "./dist/types/plugin.mjs"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
54
|
+
"import": "./dist/types/plugin.mjs",
|
|
55
|
+
"require": "./dist/types/plugin.cjs"
|
|
56
|
+
},
|
|
57
|
+
"./package.json": "./package.json"
|
|
101
58
|
},
|
|
102
59
|
"typings": "dist/index.d.mts",
|
|
103
60
|
"files": ["dist/**/*"],
|
|
@@ -108,26 +65,26 @@
|
|
|
108
65
|
"react-dom": { "optional": true }
|
|
109
66
|
},
|
|
110
67
|
"dependencies": {
|
|
111
|
-
"@stryke/convert": "^0.7.
|
|
112
|
-
"@stryke/fs": "^0.33.
|
|
113
|
-
"@stryke/helpers": "^0.10.
|
|
114
|
-
"@stryke/json": "^0.14.
|
|
115
|
-
"@stryke/path": "^0.
|
|
116
|
-
"@stryke/type-checks": "^0.6.
|
|
117
|
-
"@stryke/types": "^0.12.
|
|
68
|
+
"@stryke/convert": "^0.7.6",
|
|
69
|
+
"@stryke/fs": "^0.33.75",
|
|
70
|
+
"@stryke/helpers": "^0.10.15",
|
|
71
|
+
"@stryke/json": "^0.14.20",
|
|
72
|
+
"@stryke/path": "^0.29.2",
|
|
73
|
+
"@stryke/type-checks": "^0.6.8",
|
|
74
|
+
"@stryke/types": "^0.12.3",
|
|
118
75
|
"defu": "^6.1.7",
|
|
119
|
-
"jiti": "^2.
|
|
120
|
-
"powerlines": "^0.47.
|
|
76
|
+
"jiti": "^2.7.0",
|
|
77
|
+
"powerlines": "^0.47.8",
|
|
121
78
|
"satori": "^0.18.4"
|
|
122
79
|
},
|
|
123
80
|
"devDependencies": {
|
|
124
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
125
|
-
"@storm-software/config": "^1.137.
|
|
126
|
-
"@types/node": "^25.
|
|
81
|
+
"@powerlines/plugin-plugin": "^0.12.420",
|
|
82
|
+
"@storm-software/config": "^1.137.35",
|
|
83
|
+
"@types/node": "^25.7.0",
|
|
127
84
|
"@types/react": "^19.2.14",
|
|
128
85
|
"@types/react-dom": "^19.2.3"
|
|
129
86
|
},
|
|
130
87
|
"publishConfig": { "access": "public" },
|
|
131
88
|
"types": "./dist/index.d.cts",
|
|
132
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "e5d8383bd361a99563985879776392fb679cbbe4"
|
|
133
90
|
}
|