claude-intern 1.0.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.
- package/.env.sample +48 -0
- package/README.md +218 -0
- package/dist/index.js +309 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-intern",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI-powered task automation tool for JIRA and Linear. Automatically implement tasks using Claude Code with git integration and PR creation.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"start": "bun run src/index.ts",
|
|
9
|
+
"dev": "bun run src/index.ts",
|
|
10
|
+
"build": "bun build src/index.ts --outdir dist --target node --minify",
|
|
11
|
+
"typecheck": "bun run tsc --noEmit",
|
|
12
|
+
"clean": "rm -rf dist",
|
|
13
|
+
"test": "bun test",
|
|
14
|
+
"install-global": "bun run build && bun add -g file://$PWD",
|
|
15
|
+
"uninstall-global": "bun uninstall -g claude-intern",
|
|
16
|
+
"prepare": "bun run build",
|
|
17
|
+
"prepublishOnly": "bun run clean && bun run build && bun run typecheck"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"jira",
|
|
21
|
+
"linear",
|
|
22
|
+
"task",
|
|
23
|
+
"automation",
|
|
24
|
+
"claude",
|
|
25
|
+
"ai",
|
|
26
|
+
"intern",
|
|
27
|
+
"bitbucket",
|
|
28
|
+
"github",
|
|
29
|
+
"cli",
|
|
30
|
+
"workflow",
|
|
31
|
+
"productivity",
|
|
32
|
+
"code-generation",
|
|
33
|
+
"project-management"
|
|
34
|
+
],
|
|
35
|
+
"author": {
|
|
36
|
+
"name": "Daniil Pokrovsky",
|
|
37
|
+
"url": "https://github.com/danii1"
|
|
38
|
+
},
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"homepage": "https://github.com/danii1/claude-intern#readme",
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "git+https://github.com/danii1/claude-intern.git"
|
|
44
|
+
},
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/danii1/claude-intern/issues"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@types/turndown": "^5.0.5",
|
|
50
|
+
"commander": "^11.0.0",
|
|
51
|
+
"dotenv": "^16.3.1",
|
|
52
|
+
"turndown": "^7.2.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@biomejs/biome": "2.1.2",
|
|
56
|
+
"@types/node": "^20.10.0",
|
|
57
|
+
"bun-types": "latest",
|
|
58
|
+
"husky": "^9.1.7",
|
|
59
|
+
"typescript": "^5.3.0",
|
|
60
|
+
"ultracite": "5.0.49"
|
|
61
|
+
},
|
|
62
|
+
"bin": {
|
|
63
|
+
"claude-intern": "./dist/index.js"
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"dist/**/*",
|
|
67
|
+
"README.md",
|
|
68
|
+
".env.sample"
|
|
69
|
+
]
|
|
70
|
+
}
|