jiek 2.0.2-alpha.4 → 2.0.2-alpha.5
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +38 -36
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "jiek",
|
3
3
|
"type": "module",
|
4
|
-
"version": "2.0.2-alpha.
|
4
|
+
"version": "2.0.2-alpha.5",
|
5
5
|
"description": "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.",
|
6
6
|
"author": "YiJie <yijie4188@gmail.com>",
|
7
7
|
"repository": {
|
@@ -75,32 +75,6 @@
|
|
75
75
|
"rollup-plugin-swc3": "^0.12.1",
|
76
76
|
"typescript": "^4.0.0||^5.0.0"
|
77
77
|
},
|
78
|
-
"peerDependenciesMeta": {
|
79
|
-
"@rollup/plugin-terser": {
|
80
|
-
"optional": true
|
81
|
-
},
|
82
|
-
"@pnpm/filter-workspace-packages": {
|
83
|
-
"optional": true
|
84
|
-
},
|
85
|
-
"esbuild-register": {
|
86
|
-
"optional": true
|
87
|
-
},
|
88
|
-
"postcss": {
|
89
|
-
"optional": true
|
90
|
-
},
|
91
|
-
"rollup-plugin-postcss": {
|
92
|
-
"optional": true
|
93
|
-
},
|
94
|
-
"rollup-plugin-esbuild": {
|
95
|
-
"optional": true
|
96
|
-
},
|
97
|
-
"rollup-plugin-swc3": {
|
98
|
-
"optional": true
|
99
|
-
},
|
100
|
-
"typescript": {
|
101
|
-
"optional": true
|
102
|
-
}
|
103
|
-
},
|
104
78
|
"devDependencies": {
|
105
79
|
"@npm/types": "^1.0.2",
|
106
80
|
"@pnpm/filter-workspace-packages": "^7.2.13",
|
@@ -118,21 +92,49 @@
|
|
118
92
|
"rollup-plugin-esbuild": "^6.1.0",
|
119
93
|
"rollup-plugin-swc3": "^0.12.1"
|
120
94
|
},
|
95
|
+
"publishConfig": {
|
96
|
+
"version": "2.0.2-alpha.4",
|
97
|
+
"peerDependenciesMeta": {
|
98
|
+
"@rollup/plugin-terser": {
|
99
|
+
"optional": true
|
100
|
+
},
|
101
|
+
"@pnpm/filter-workspace-packages": {
|
102
|
+
"optional": true
|
103
|
+
},
|
104
|
+
"esbuild-register": {
|
105
|
+
"optional": true
|
106
|
+
},
|
107
|
+
"postcss": {
|
108
|
+
"optional": true
|
109
|
+
},
|
110
|
+
"rollup-plugin-postcss": {
|
111
|
+
"optional": true
|
112
|
+
},
|
113
|
+
"rollup-plugin-esbuild": {
|
114
|
+
"optional": true
|
115
|
+
},
|
116
|
+
"rollup-plugin-swc3": {
|
117
|
+
"optional": true
|
118
|
+
},
|
119
|
+
"typescript": {
|
120
|
+
"optional": true
|
121
|
+
}
|
122
|
+
}
|
123
|
+
},
|
121
124
|
"scripts": {
|
122
|
-
"prepublish
|
123
|
-
"prepublish": "jk"
|
125
|
+
"prepublish": "jb -nm && jk"
|
124
126
|
},
|
125
|
-
"main": "./dist/index.cjs",
|
126
|
-
"module": "./dist/index.js",
|
127
127
|
"typesVersions": {
|
128
128
|
"<5.0": {
|
129
129
|
"*": [
|
130
130
|
"*",
|
131
|
-
"
|
132
|
-
"
|
133
|
-
"
|
134
|
-
"
|
131
|
+
"./*",
|
132
|
+
"./*/index.d.ts",
|
133
|
+
"./*/index.d.mts",
|
134
|
+
"./*/index.d.cts"
|
135
135
|
]
|
136
136
|
}
|
137
|
-
}
|
137
|
+
},
|
138
|
+
"main": "./dist/index.cjs",
|
139
|
+
"module": "./dist/index.js"
|
138
140
|
}
|