@waniwani/cli 0.0.45 → 0.0.46
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/index.js +1047 -716
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waniwani/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.46",
|
|
4
4
|
"description": "WaniWani CLI for MCP development workflow",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -16,15 +16,16 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "rm -rf dist &&
|
|
19
|
+
"build": "rm -rf dist && bun run typecheck && bun run lint && tsup",
|
|
20
20
|
"dev": "tsx --watch src/index.ts",
|
|
21
21
|
"typecheck": "tsc --noEmit",
|
|
22
22
|
"lint": "biome check .",
|
|
23
23
|
"lint:fix": "biome check . --write",
|
|
24
|
-
"prepublishOnly": "
|
|
25
|
-
"release": "npm version patch && npm publish --access public",
|
|
26
|
-
"release:minor": "npm version minor && npm publish --access public",
|
|
27
|
-
"release:major": "npm version major && npm publish --access public"
|
|
24
|
+
"prepublishOnly": "bun run build",
|
|
25
|
+
"release": "npm whoami && bun run build && npm version patch && npm publish --access public",
|
|
26
|
+
"release:minor": "npm whoami && bun run build && npm version minor && npm publish --access public",
|
|
27
|
+
"release:major": "npm whoami && bun run build && npm version major && npm publish --access public",
|
|
28
|
+
"release:beta": "npm whoami && bun run build && npm version prerelease --preid beta && npm publish --access public --tag beta"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"@inquirer/prompts": "^8.2.0",
|