spidersan 0.9.0 → 0.10.0

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 (37) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/commands/bot.d.ts.map +1 -1
  3. package/dist/commands/bot.js +32 -14
  4. package/dist/commands/bot.js.map +1 -1
  5. package/dist/commands/conflicts.d.ts.map +1 -1
  6. package/dist/commands/conflicts.js +247 -258
  7. package/dist/commands/conflicts.js.map +1 -1
  8. package/dist/commands/cross-conflicts.d.ts.map +1 -1
  9. package/dist/commands/cross-conflicts.js +9 -3
  10. package/dist/commands/cross-conflicts.js.map +1 -1
  11. package/dist/commands/pulse.d.ts.map +1 -1
  12. package/dist/commands/pulse.js +41 -112
  13. package/dist/commands/pulse.js.map +1 -1
  14. package/dist/commands/register.d.ts.map +1 -1
  15. package/dist/commands/register.js +15 -8
  16. package/dist/commands/register.js.map +1 -1
  17. package/dist/commands/watch.d.ts +6 -0
  18. package/dist/commands/watch.d.ts.map +1 -1
  19. package/dist/commands/watch.js +109 -1
  20. package/dist/commands/watch.js.map +1 -1
  21. package/dist/lib/pulse-renderer.d.ts +19 -0
  22. package/dist/lib/pulse-renderer.d.ts.map +1 -0
  23. package/dist/lib/pulse-renderer.js +108 -0
  24. package/dist/lib/pulse-renderer.js.map +1 -0
  25. package/dist/lib/register-renderer.d.ts +10 -0
  26. package/dist/lib/register-renderer.d.ts.map +1 -0
  27. package/dist/lib/register-renderer.js +19 -0
  28. package/dist/lib/register-renderer.js.map +1 -0
  29. package/dist/lib/remote-drift.d.ts +1 -0
  30. package/dist/lib/remote-drift.d.ts.map +1 -1
  31. package/dist/lib/remote-drift.js +3 -1
  32. package/dist/lib/remote-drift.js.map +1 -1
  33. package/dist/lib/watch-renderer.d.ts +13 -0
  34. package/dist/lib/watch-renderer.d.ts.map +1 -0
  35. package/dist/lib/watch-renderer.js +35 -0
  36. package/dist/lib/watch-renderer.js.map +1 -0
  37. package/package.json +90 -92
package/package.json CHANGED
@@ -1,93 +1,91 @@
1
1
  {
2
- "name": "spidersan",
3
- "version": "0.9.0",
4
- "description": "Branch coordination for AI coding agents",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "spidersan": "dist/bin/spidersan.js"
10
- },
11
- "files": [
12
- "dist",
13
- "README.md",
14
- "LICENSE",
15
- "LICENSE.md",
16
- "CHANGELOG.md"
17
- ],
18
- "publishConfig": {
19
- "access": "public"
20
- },
21
- "funding": {
22
- "type": "individual",
23
- "url": "https://github.com/sponsors/treebird7"
24
- },
25
- "scripts": {
26
- "build": "tsc",
27
- "dev": "tsc --watch",
28
- "start": "node dist/bin/spidersan.js",
29
- "test": "vitest",
30
- "test:run": "vitest run",
31
- "test:coverage": "vitest run --coverage",
32
- "lint": "eslint 'src/**/*.ts'",
33
- "typecheck": "tsc --noEmit",
34
- "prepublishOnly": "npm run typecheck && npm run lint && npm run build",
35
- "prepare": "npm run build",
36
- "stress-test": "node scripts/stress-test.js",
37
- "stress-test:clean": "node scripts/stress-test.js --clean",
38
- "stress-test:report": "node scripts/stress-test.js --report"
39
- },
40
- "keywords": [
41
- "ai",
42
- "agents",
43
- "git",
44
- "branch",
45
- "coordination",
46
- "merge",
47
- "conflicts",
48
- "claude",
49
- "cursor",
50
- "copilot",
51
- "mcp",
52
- "cli"
53
- ],
54
- "author": "treebird7",
55
- "license": "MIT",
56
- "repository": {
57
- "type": "git",
58
- "url": "git+https://github.com/treebird7/spidersan-oss.git"
59
- },
60
- "bugs": {
61
- "url": "https://github.com/treebird7/spidersan-oss/issues"
62
- },
63
- "homepage": "https://github.com/treebird7/spidersan-oss#readme",
64
- "engines": {
65
- "node": ">=18.0.0"
66
- },
67
- "dependencies": {
68
- "@types/blessed": "^0.1.27",
69
- "blessed": "^0.1.81",
70
- "chalk": "^5.6.2",
71
- "chokidar": "^5.0.0",
72
- "commander": "^12.1.0",
73
- "dotenv": "^17.2.3",
74
- "execa": "^9.6.1",
75
- "minimatch": "^10.2.4",
76
- "moment": "^2.30.1",
77
- "socket.io-client": "^4.8.3",
78
- "tree-sitter": "^0.21.1",
79
- "tree-sitter-typescript": "^0.23.2",
80
- "ts-morph": "^27.0.2",
81
- "tweetnacl": "^1.0.3",
82
- "tweetnacl-util": "^0.15.1",
83
- "yjs": "^13.6.29"
84
- },
85
- "devDependencies": {
86
- "@types/node": "^20.0.0",
87
- "@typescript-eslint/eslint-plugin": "^8.57.0",
88
- "@typescript-eslint/parser": "^8.56.1",
89
- "eslint": "^8.0.0",
90
- "typescript": "^5.3.0",
91
- "vitest": "^4.0.17"
92
- }
93
- }
2
+ "name": "spidersan",
3
+ "version": "0.10.0",
4
+ "description": "Branch coordination for AI coding agents",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "spidersan": "dist/bin/spidersan.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE",
15
+ "LICENSE.md",
16
+ "CHANGELOG.md"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "funding": {
22
+ "type": "individual",
23
+ "url": "https://github.com/sponsors/treebird7"
24
+ },
25
+ "keywords": [
26
+ "ai",
27
+ "agents",
28
+ "git",
29
+ "branch",
30
+ "coordination",
31
+ "merge",
32
+ "conflicts",
33
+ "claude",
34
+ "cursor",
35
+ "copilot",
36
+ "mcp",
37
+ "cli"
38
+ ],
39
+ "author": "treebird7",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/treebird7/spidersan-oss.git"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/treebird7/spidersan-oss/issues"
47
+ },
48
+ "homepage": "https://github.com/treebird7/spidersan-oss#readme",
49
+ "engines": {
50
+ "node": ">=18.0.0"
51
+ },
52
+ "dependencies": {
53
+ "@types/blessed": "^0.1.27",
54
+ "blessed": "^0.1.81",
55
+ "chalk": "^5.6.2",
56
+ "chokidar": "^5.0.0",
57
+ "commander": "^12.1.0",
58
+ "dotenv": "^17.2.3",
59
+ "execa": "^9.6.1",
60
+ "minimatch": "^10.2.4",
61
+ "moment": "^2.30.1",
62
+ "socket.io-client": "^4.8.3",
63
+ "tree-sitter": "^0.21.1",
64
+ "tree-sitter-typescript": "^0.23.2",
65
+ "ts-morph": "^27.0.2",
66
+ "tweetnacl": "^1.0.3",
67
+ "tweetnacl-util": "^0.15.1",
68
+ "yjs": "^13.6.29"
69
+ },
70
+ "devDependencies": {
71
+ "@types/node": "^20.0.0",
72
+ "@typescript-eslint/eslint-plugin": "^8.57.0",
73
+ "@typescript-eslint/parser": "^8.56.1",
74
+ "eslint": "^8.0.0",
75
+ "typescript": "^5.3.0",
76
+ "vitest": "^4.0.17"
77
+ },
78
+ "scripts": {
79
+ "build": "tsc",
80
+ "dev": "tsc --watch",
81
+ "start": "node dist/bin/spidersan.js",
82
+ "test": "vitest",
83
+ "test:run": "vitest run",
84
+ "test:coverage": "vitest run --coverage",
85
+ "lint": "eslint 'src/**/*.ts'",
86
+ "typecheck": "tsc --noEmit",
87
+ "stress-test": "node scripts/stress-test.js",
88
+ "stress-test:clean": "node scripts/stress-test.js --clean",
89
+ "stress-test:report": "node scripts/stress-test.js --report"
90
+ }
91
+ }