@ait-co/devtools 0.1.29 → 0.1.30
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/mcp/cli.js +2 -2
- package/dist/mcp/server.js +1 -1
- package/dist/mock/index.d.ts +35 -2
- package/dist/mock/index.d.ts.map +1 -1
- package/dist/mock/index.js +72 -2
- package/dist/mock/index.js.map +1 -1
- package/dist/panel/index.js +63 -3
- package/dist/panel/index.js.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ait-co/devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "Development tools for Apps in Toss mini-apps — mock SDK, floating devtools panel, and universal bundler plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dist"
|
|
47
47
|
],
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@apps-in-toss/web-framework": ">=2.
|
|
49
|
+
"@apps-in-toss/web-framework": ">=2.6.0 <2.7.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependenciesMeta": {
|
|
52
52
|
"@apps-in-toss/web-framework": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@types/qrcode-terminal": "^0.12.2",
|
|
66
66
|
"@types/ws": "^8.18.0",
|
|
67
|
-
"@apps-in-toss/web-framework": "2.
|
|
67
|
+
"@apps-in-toss/web-framework": "2.6.0",
|
|
68
68
|
"@biomejs/biome": "2.4.15",
|
|
69
69
|
"@changesets/cli": "^2.31.0",
|
|
70
70
|
"@khmyznikov/pwa-install": "^0.6.3",
|
|
@@ -117,6 +117,7 @@
|
|
|
117
117
|
"lint:fix": "biome check --write .",
|
|
118
118
|
"format": "biome format --write .",
|
|
119
119
|
"check-sdk-update": "tsx scripts/check-sdk-update.ts",
|
|
120
|
+
"diff-sdk-exports": "tsx scripts/diff-sdk-exports.ts",
|
|
120
121
|
"build:og": "tsx --tsconfig scripts/tsconfig.json scripts/build-og-image.tsx"
|
|
121
122
|
}
|
|
122
123
|
}
|