flowpilot 0.0.3 → 0.1.16

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/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowpilot",
3
- "version": "0.0.3",
3
+ "version": "0.1.16",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22.13"
@@ -24,9 +24,10 @@
24
24
  "dev": "rolldown -c rolldown.config.ts --watch",
25
25
  "format": "biome format --write",
26
26
  "test": "vitest",
27
- "release:major": "vitest run && pnpm build && npm version major && npm publish --registry https://registry.npmjs.org/",
28
- "release:minor": "vitest run && pnpm build && npm version minor && npm publish --registry https://registry.npmjs.org/",
29
- "release:patch": "vitest run && pnpm build && npm version patch && npm publish --registry https://registry.npmjs.org/",
27
+ "release": "vitest run && pnpm build && bash scripts/bump-version.sh | xargs npm version && git push && git push --tags",
28
+ "release:patch": "vitest run && pnpm build && npm version patch && git push && git push --tags",
29
+ "release:minor": "vitest run && pnpm build && npm version minor && git push && git push --tags",
30
+ "release:major": "vitest run && pnpm build && npm version major && git push && git push --tags",
30
31
  "postinstall": "node dist/cli.js serve",
31
32
  "prepublishOnly": "pnpm build"
32
33
  },
@@ -45,6 +46,13 @@
45
46
  "devops"
46
47
  ],
47
48
  "author": "Corazon",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/FriendsA/flowpilot"
52
+ },
53
+ "publishConfig": {
54
+ "provenance": true
55
+ },
48
56
  "license": "ISC",
49
57
  "dependencies": {
50
58
  "@clack/prompts": "^1.4.0",