gtx-cli 2.5.28 → 2.5.29-alpha.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/dist/main.js +208115 -1
- package/dist/main.js.map +1 -0
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtx-cli",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.29-alpha.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"bin": "dist/main.js",
|
|
6
6
|
"files": [
|
|
@@ -110,6 +110,11 @@
|
|
|
110
110
|
"devDependencies": {
|
|
111
111
|
"@babel/types": "^7.28.4",
|
|
112
112
|
"@biomejs/biome": "^1.9.4",
|
|
113
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
114
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
115
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
116
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
117
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
113
118
|
"@types/babel__generator": "^7.27.0",
|
|
114
119
|
"@types/babel__traverse": "^7.20.6",
|
|
115
120
|
"@types/figlet": "^1.7.0",
|
|
@@ -124,12 +129,13 @@
|
|
|
124
129
|
"mdast-util-mdx-jsx": "^3.2.0",
|
|
125
130
|
"mdast-util-mdxjs-esm": "^2.0.1",
|
|
126
131
|
"prettier": "^3.4.2",
|
|
132
|
+
"rollup": "^4.53.3",
|
|
127
133
|
"ts-node": "^10.9.2",
|
|
128
134
|
"tslib": "^2.8.1",
|
|
129
135
|
"typescript": "^5.5.4"
|
|
130
136
|
},
|
|
131
137
|
"scripts": {
|
|
132
|
-
"build": "tsc",
|
|
138
|
+
"build": "tsc && rollup -c",
|
|
133
139
|
"build:clean": "sh ../../scripts/clean.sh && pnpm run build",
|
|
134
140
|
"build:release": "pnpm run build:clean",
|
|
135
141
|
"lint": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\"",
|