@alphalawyer/alpha-classic-cli 0.1.1 → 0.1.3
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alphalawyer/alpha-classic-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Alpha Classic CLI for AI-friendly web app access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,12 +15,14 @@
|
|
|
15
15
|
"node": ">=20"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "npm run build:
|
|
18
|
+
"build": "npm run build:prod",
|
|
19
19
|
"build:local": "ALPHA_CLASSIC_CLI_ENV=local tsup",
|
|
20
20
|
"build:dev": "ALPHA_CLASSIC_CLI_ENV=dev tsup",
|
|
21
21
|
"build:test": "ALPHA_CLASSIC_CLI_ENV=test tsup",
|
|
22
22
|
"build:prod": "ALPHA_CLASSIC_CLI_ENV=prod tsup",
|
|
23
23
|
"dev": "tsx src/index.ts",
|
|
24
|
+
"release:dry-run": "npm run typecheck && npm test && npm run build:prod && npm pack --dry-run",
|
|
25
|
+
"release:patch": "npm whoami && npm run release:dry-run && npm version patch --no-git-tag-version && npm run build:prod && npm pack --dry-run && npm publish --access public",
|
|
24
26
|
"test": "node --import tsx --test test/*.test.ts",
|
|
25
27
|
"typecheck": "tsc --noEmit"
|
|
26
28
|
},
|