-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.35 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
{
"name": "@getdevintern/code",
"version": "2.3.2",
"description": "Turn tracker tickets into pull requests with any coding agent. Self-hosted, BYOK. Free interactive use.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run src/index.ts",
"build": "bun run build.ts",
"format": "oxfmt \"src/**/*.ts\" \"tests/**/*.ts\" \"build.ts\"",
"format:check": "oxfmt --check \"src/**/*.ts\" \"tests/**/*.ts\" \"build.ts\"",
"lint": "oxlint .",
"typecheck": "bun run tsc --noEmit",
"clean": "rm -rf dist",
"test": "bun run tests/run-tests.ts",
"install-global": "bun run build && bun link",
"uninstall-global": "bun unlink",
"prepare": "bun run build",
"prepublishOnly": "bun run clean && bun run build && bun run typecheck"
},
"keywords": [
"ai",
"coding-agent",
"agent",
"cli",
"self-hosted",
"byok",
"pull-request",
"jira",
"linear",
"github",
"trello",
"asana",
"azure-devops",
"markdown",
"claude",
"claude-code",
"opencode",
"codex",
"cursor",
"task-automation",
"devtools",
"workflow",
"productivity"
],
"author": {
"name": "Daniil Pokrovsky",
"url": "https://github.com/danii1"
},
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://devintern.com",
"repository": {
"type": "git",
"url": "git+https://github.com/getdevintern/devintern.git",
"directory": "packages/code"
},
"bugs": {
"url": "https://github.com/getdevintern/devintern/issues"
},
"dependencies": {
"@types/turndown": "^5.0.5",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"p-queue": "^9.0.1",
"turndown": "^7.2.0"
},
"devDependencies": {
"@devintern/agent-harness": "workspace:*",
"@devintern/auth": "workspace:*",
"@devintern/license-check": "workspace:*",
"@devintern/task-trackers": "workspace:*",
"@devintern/utils": "workspace:*",
"@devintern/text-formatter": "workspace:*",
"@types/bun": "^1.3.3",
"@types/node": "^20.10.0",
"bun-types": "latest",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"typescript": "^5.3.0"
},
"bin": {
"devintern": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE.md",
".env.example"
]
}