@stylexswc/unplugin 0.16.5-rc.1 → 0.17.0-rc.1
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 +44 -44
package/package.json
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stylexswc/unplugin",
|
|
3
3
|
"description": "Unplugin for StyleX RS compiler",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
"version": "0.17.0-rc.1",
|
|
5
|
+
"bugs": "https://github.com/Dwlad90/stylex-swc-plugin/issues",
|
|
6
|
+
"config": {
|
|
7
|
+
"scripty": {
|
|
8
|
+
"path": "../../scripts/packages"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@stylexjs/babel-plugin": "^0.19.0",
|
|
13
|
+
"@stylexswc/rs-compiler": "0.17.0-rc.1",
|
|
14
|
+
"unplugin": "^3.0.0",
|
|
15
|
+
"vite": "^8.0.16"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@nuxt/kit": "^4.4.4",
|
|
19
|
+
"@nuxt/schema": "^4.4.6",
|
|
20
|
+
"@rollup/plugin-commonjs": "^29.0.3",
|
|
21
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
22
|
+
"@types/node": "^25.9.1",
|
|
23
|
+
"eslint": "^10.4.1",
|
|
24
|
+
"esno": "^4.7.0",
|
|
25
|
+
"rollup": "^4.61.0",
|
|
26
|
+
"tsup": "^8.5.1",
|
|
27
|
+
"typescript": "^6.0.3",
|
|
28
|
+
"vitest": "^4.1.8"
|
|
29
|
+
},
|
|
10
30
|
"exports": {
|
|
11
31
|
".": {
|
|
12
32
|
"types": "./dist/index.d.ts",
|
|
@@ -63,44 +83,6 @@
|
|
|
63
83
|
"files": [
|
|
64
84
|
"dist"
|
|
65
85
|
],
|
|
66
|
-
"publishConfig": {
|
|
67
|
-
"registry": "https://registry.npmjs.org/",
|
|
68
|
-
"access": "public"
|
|
69
|
-
},
|
|
70
|
-
"config": {
|
|
71
|
-
"scripty": {
|
|
72
|
-
"path": "../../scripts/packages"
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
"dependencies": {
|
|
76
|
-
"@stylexjs/babel-plugin": "^0.18.3",
|
|
77
|
-
"@stylexswc/rs-compiler": "0.16.5-rc.1",
|
|
78
|
-
"unplugin": "^3.0.0",
|
|
79
|
-
"vite": "^8.0.16"
|
|
80
|
-
},
|
|
81
|
-
"devDependencies": {
|
|
82
|
-
"@nuxt/kit": "^4.4.4",
|
|
83
|
-
"@nuxt/schema": "^4.4.6",
|
|
84
|
-
"@rollup/plugin-commonjs": "^29.0.3",
|
|
85
|
-
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
86
|
-
"@types/node": "^25.9.1",
|
|
87
|
-
"eslint": "^10.4.1",
|
|
88
|
-
"esno": "^4.7.0",
|
|
89
|
-
"rollup": "^4.61.0",
|
|
90
|
-
"tsup": "^8.5.1",
|
|
91
|
-
"typescript": "^6.0.3",
|
|
92
|
-
"vitest": "^4.1.8"
|
|
93
|
-
},
|
|
94
|
-
"peerDependencies": {
|
|
95
|
-
"@farmfe/core": ">=1.7.11 <2.0.0",
|
|
96
|
-
"@nuxt/kit": ">=3.0.0",
|
|
97
|
-
"@nuxt/schema": ">=3.0.0",
|
|
98
|
-
"esbuild": ">=0.25.0",
|
|
99
|
-
"rollup": ">=3.0.0",
|
|
100
|
-
"vite": ">=4.0.0",
|
|
101
|
-
"webpack": ">=5.0.0"
|
|
102
|
-
},
|
|
103
|
-
"bugs": "https://github.com/Dwlad90/stylex-swc-plugin/issues",
|
|
104
86
|
"homepage": "https://github.com/Dwlad90/stylex-swc-plugin/tree/develop/packages/unplugin#readme",
|
|
105
87
|
"keywords": [
|
|
106
88
|
"esbuild",
|
|
@@ -115,7 +97,18 @@
|
|
|
115
97
|
"vite",
|
|
116
98
|
"webpack"
|
|
117
99
|
],
|
|
100
|
+
"license": "MIT",
|
|
118
101
|
"main": "./dist/index.js",
|
|
102
|
+
"module": "./dist/index.js",
|
|
103
|
+
"peerDependencies": {
|
|
104
|
+
"@farmfe/core": ">=1.7.11 <2.0.0",
|
|
105
|
+
"@nuxt/kit": ">=3.0.0",
|
|
106
|
+
"@nuxt/schema": ">=3.0.0",
|
|
107
|
+
"esbuild": ">=0.25.0",
|
|
108
|
+
"rollup": ">=3.0.0",
|
|
109
|
+
"vite": ">=4.0.0",
|
|
110
|
+
"webpack": ">=5.0.0"
|
|
111
|
+
},
|
|
119
112
|
"peerDependenciesMeta": {
|
|
120
113
|
"@farmfe/core": {
|
|
121
114
|
"optional": true
|
|
@@ -139,8 +132,15 @@
|
|
|
139
132
|
"optional": true
|
|
140
133
|
}
|
|
141
134
|
},
|
|
135
|
+
"private": false,
|
|
136
|
+
"publishConfig": {
|
|
137
|
+
"registry": "https://registry.npmjs.org/",
|
|
138
|
+
"access": "public"
|
|
139
|
+
},
|
|
142
140
|
"repository": "https://github.com/Dwlad90/stylex-swc-plugin",
|
|
141
|
+
"sideEffects": false,
|
|
143
142
|
"type": "module",
|
|
143
|
+
"types": "./dist/index.d.ts",
|
|
144
144
|
"typesVersions": {
|
|
145
145
|
"*": {
|
|
146
146
|
"*": [
|