-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 5.76 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "juno-code",
"version": "1.0.50",
"description": "Ralph Wiggum meet Kanban! Ralph style execution for [Claude Code, Codex, Gemini, Cursor]. One task per iteration, automatic progress tracking, and git commits. Set it and let it run.",
"keywords": [
"Ralph",
"Ralph Wiggum",
"Claude code",
"backlog ralph",
"claude lopp",
"ai",
"cli",
"typescript",
"mcp",
"subagents",
"automation",
"claude",
"cursor",
"codex",
"gemini"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"juno-code": "./dist/bin/juno-code.sh",
"yy": "./dist/bin/juno-code.sh",
"feedback-juno-code": "./dist/bin/feedback-collector.mjs"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "tsx src/bin/cli.ts",
"build": "tsup && npm run build:copy-templates && npm run build:copy-services && npm run build:copy-skills && npm run build:copy-extensions && npm run build:copy-wrapper",
"build:copy-templates": "node -e \"const fs = require('fs-extra'); const path = require('path'); fs.copySync('src/templates/scripts', 'dist/templates/scripts', { recursive: true }); fs.readdirSync('dist/templates/scripts').filter(f => f.endsWith('.sh')).forEach(f => fs.chmodSync(path.join('dist/templates/scripts', f), 0o755));\"",
"build:copy-services": "node -e \"const fs = require('fs-extra'); const path = require('path'); const src = 'src/templates/services'; const dest = 'dist/templates/services'; fs.copySync(src, dest, { recursive: true }); const required = ['codex.py','claude.py','gemini.py','pi.py']; const missing = required.filter(file => !fs.existsSync(path.join(dest, file))); if (missing.length) { throw new Error('Missing required service scripts in dist: ' + missing.join(', ')); } required.forEach(file => fs.chmodSync(path.join(dest, file), 0o755));\"",
"build:copy-skills": "node -e \"const fs = require('fs-extra'); const src = 'src/templates/skills'; const dest = 'dist/templates/skills'; fs.copySync(src, dest, { recursive: true, dereference: true });\"",
"build:copy-extensions": "node -e \"const fs = require('fs-extra'); const src = 'src/templates/extensions'; const dest = 'dist/templates/extensions'; if (fs.existsSync(src)) { fs.copySync(src, dest, { recursive: true }); }\"",
"build:copy-wrapper": "node -e \"const fs = require('fs-extra'); fs.copySync('src/bin/juno-code.sh', 'dist/bin/juno-code.sh'); fs.chmodSync('dist/bin/juno-code.sh', 0o755);\"",
"build:watch": "tsup --watch",
"test": "vitest run -c ./vitest.fast.config.ts",
"test:full": "vitest run",
"test:binary": "vitest run src/cli/__tests__/binary-execution-interactive.test.ts",
"help:test:binary": "bash ./scripts/test-usage.sh binary",
"test:unit": "vitest run src/__tests__/unit",
"test:integration": "vitest run src/__tests__/integration",
"test:e2e": "vitest run src/__tests__/e2e",
"test:coverage": "bash scripts/run-coverage.sh",
"test:coverage:ts": "vitest run --coverage",
"test:coverage:python": "python -m pytest test_pi_service/ test_codex_streaming/ test_claude_service/ test_slack_integration/ test_github_integration/ test_attachments/ --cov=src/templates/services --cov=src/templates/scripts --cov-report=lcov:coverage/python-lcov.info --cov-report=term-missing -q",
"test:watch": "vitest -c ./vitest.fast.config.ts",
"test:python": "python -m pytest test_pi_service/ test_codex_streaming/ test_claude_service/ test_slack_integration/ test_github_integration/ test_attachments/ -q",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,md}\"",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepack": "npm run clean && npm run build",
"cli": "tsx src/bin/cli.ts",
"completion:install": "tsx src/bin/cli.ts --install-completion",
"build:exp": "npm run build && bash scripts/install-exp.sh install",
"uninstall:exp": "bash scripts/install-exp.sh uninstall",
"deploy": "bash scripts/publish-all.sh patch",
"deploy:minor": "bash scripts/publish-all.sh minor",
"deploy:major": "bash scripts/publish-all.sh major",
"deploy:dry-run": "bash scripts/publish-all.sh patch --dry-run"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"glob": "^13.0.6",
"js-yaml": "^4.1.1",
"semver": "^7.5.4",
"strip-ansi": "^7.1.2",
"supports-color": "^9.4.0",
"uuid": "^9.0.1",
"which": "^4.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"rimraf": "^6.1.3",
"sucrase": "^3.35.1",
"tsup": "^8.5.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/askbudi/juno-code.git"
},
"bugs": {
"url": "https://github.com/askbudi/juno-code/issues"
},
"homepage": "https://askbudi.ai/juno-code#readme",
"license": "MIT",
"author": {
"name": "Juno AI INC.",
"email": "golchin@askdev.ai"
},
"publishConfig": {
"access": "public"
}
}