@powerlines/plugin-style-dictionary 0.3.130 → 0.3.132

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.
Files changed (1) hide show
  1. package/package.json +18 -78
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-style-dictionary",
3
- "version": "0.3.130",
3
+ "version": "0.3.132",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to generate project code with Style Dictionary.",
6
6
  "repository": {
@@ -38,80 +38,19 @@
38
38
  },
39
39
  "license": "Apache-2.0",
40
40
  "private": false,
41
- "main": "dist/index.cjs",
42
- "module": "dist/index.mjs",
41
+ "main": "./dist/index.cjs",
42
+ "module": "./dist/index.mjs",
43
43
  "exports": {
44
- "./package.json": "./package.json",
45
- ".": {
46
- "import": {
47
- "types": "./dist/index.d.mts",
48
- "default": "./dist/index.mjs"
49
- },
50
- "require": {
51
- "types": "./dist/index.d.cts",
52
- "default": "./dist/index.cjs"
53
- },
54
- "default": {
55
- "types": "./dist/index.d.mts",
56
- "default": "./dist/index.mjs"
57
- }
58
- },
59
- "./index": {
60
- "import": {
61
- "types": "./dist/index.d.mts",
62
- "default": "./dist/index.mjs"
63
- },
64
- "require": {
65
- "types": "./dist/index.d.cts",
66
- "default": "./dist/index.cjs"
67
- },
68
- "default": {
69
- "types": "./dist/index.d.mts",
70
- "default": "./dist/index.mjs"
71
- }
72
- },
73
- "./plugin": {
74
- "import": {
75
- "types": "./dist/index.d.mts",
76
- "default": "./dist/index.mjs"
77
- },
78
- "require": {
79
- "types": "./dist/index.d.cts",
80
- "default": "./dist/index.cjs"
81
- },
82
- "default": {
83
- "types": "./dist/index.d.mts",
84
- "default": "./dist/index.mjs"
85
- }
86
- },
44
+ ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
87
45
  "./types": {
88
- "import": {
89
- "types": "./dist/types/index.d.mts",
90
- "default": "./dist/types/index.mjs"
91
- },
92
- "require": {
93
- "types": "./dist/types/index.d.cts",
94
- "default": "./dist/types/index.cjs"
95
- },
96
- "default": {
97
- "types": "./dist/types/index.d.mts",
98
- "default": "./dist/types/index.mjs"
99
- }
46
+ "require": "./dist/types/index.cjs",
47
+ "import": "./dist/types/index.mjs"
100
48
  },
101
- "./types/*": {
102
- "import": {
103
- "types": "./dist/types/*.d.mts",
104
- "default": "./dist/types/*.mjs"
105
- },
106
- "require": {
107
- "types": "./dist/types/*.d.cts",
108
- "default": "./dist/types/*.cjs"
109
- },
110
- "default": {
111
- "types": "./dist/types/*.d.mts",
112
- "default": "./dist/types/*.mjs"
113
- }
114
- }
49
+ "./types/plugin": {
50
+ "require": "./dist/types/plugin.cjs",
51
+ "import": "./dist/types/plugin.mjs"
52
+ },
53
+ "./package.json": "./package.json"
115
54
  },
116
55
  "typings": "dist/index.d.mts",
117
56
  "files": ["dist/**/*"],
@@ -122,18 +61,19 @@
122
61
  "powerlines-plugin"
123
62
  ],
124
63
  "dependencies": {
125
- "@stryke/path": "^0.26.1",
126
- "@stryke/type-checks": "^0.5.21",
127
- "@stryke/types": "^0.10.35",
64
+ "@stryke/path": "^0.26.2",
65
+ "@stryke/type-checks": "^0.5.22",
66
+ "@stryke/types": "^0.10.36",
128
67
  "defu": "^6.1.4",
129
68
  "jiti": "^2.6.1",
130
- "powerlines": "^0.37.100",
69
+ "powerlines": "^0.37.102",
131
70
  "style-dictionary": "^5.2.0"
132
71
  },
133
72
  "devDependencies": {
134
- "@powerlines/plugin-plugin": "^0.12.180",
73
+ "@powerlines/plugin-plugin": "^0.12.182",
135
74
  "@types/node": "^24.10.9"
136
75
  },
137
76
  "publishConfig": { "access": "public" },
138
- "gitHead": "043c95182c0607708824fb98d89431e9b14e190c"
77
+ "types": "./dist/index.d.cts",
78
+ "gitHead": "796dc594db03737a22f52bb6892cb1feea9509a6"
139
79
  }