6a-spec-install 1.0.0 → 1.0.1-dev.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.
Files changed (1) hide show
  1. package/package.json +26 -3
package/package.json CHANGED
@@ -1,13 +1,37 @@
1
1
  {
2
2
  "name": "6a-spec-install",
3
- "version": "1.0.0",
3
+ "version": "1.0.1-dev.1",
4
4
  "description": "6A-spec 驱动开发提示词安装工具,支持 Cursor 和 Claude",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {
7
7
  "6a-spec-install": "./bin/6a-spec-install"
8
8
  },
9
9
  "scripts": {
10
- "test": "node bin/6a-spec-install --help"
10
+ "test": "node bin/6a-spec-install --help",
11
+ "version:dev": "npm version prerelease --preid=dev --no-git-tag-version",
12
+ "version:beta": "npm version prerelease --preid=beta --no-git-tag-version",
13
+ "version:rc": "npm version prerelease --preid=rc --no-git-tag-version",
14
+ "version:patch": "npm version patch --no-git-tag-version",
15
+ "version:minor": "npm version minor --no-git-tag-version",
16
+ "version:major": "npm version major --no-git-tag-version",
17
+ "version:dev:git": "npm version prerelease --preid=dev",
18
+ "version:beta:git": "npm version prerelease --preid=beta",
19
+ "version:rc:git": "npm version prerelease --preid=rc",
20
+ "version:patch:git": "npm version patch",
21
+ "version:minor:git": "npm version minor",
22
+ "version:major:git": "npm version major",
23
+ "publish:dev": "npm run version:dev && npm publish --tag dev",
24
+ "publish:beta": "npm run version:beta && npm publish --tag beta",
25
+ "publish:rc": "npm run version:rc && npm publish --tag rc",
26
+ "publish:latest": "npm run version:patch && npm publish",
27
+ "publish:dev:otp": "npm run version:dev && npm publish --tag dev --otp",
28
+ "publish:beta:otp": "npm run version:beta && npm publish --tag beta --otp",
29
+ "publish:rc:otp": "npm run version:rc && npm publish --tag rc --otp",
30
+ "publish:latest:otp": "npm run version:patch && npm publish --otp",
31
+ "publish:dev:git": "npm run version:dev:git && npm publish --tag dev",
32
+ "publish:beta:git": "npm run version:beta:git && npm publish --tag beta",
33
+ "publish:rc:git": "npm run version:rc:git && npm publish --tag rc",
34
+ "publish:latest:git": "npm run version:patch:git && npm publish"
11
35
  },
12
36
  "keywords": [
13
37
  "cursor",
@@ -34,4 +58,3 @@
34
58
  "url": "https://gitee.com/yanghuijava/6-a-spec.git"
35
59
  }
36
60
  }
37
-