-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.29 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
{
"name": "@agent-era/devteam",
"version": "1.1.2",
"description": "DevTeam: Git/Tmux development workflow TUI (Node + Ink)",
"bin": {
"devteam": "dist/bin/devteam.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rm -rf dist && tsc -p . && chmod +x dist/bin/devteam.js",
"typecheck": "npm install && tsc -p tsconfig.test.json",
"start": "node dist/cli.js",
"cli": "node dist/bin/devteam.js",
"test": "jest",
"test:watch": "jest --watch",
"test:terminal": "npm run build && tsc -p tsconfig.node-tests.json && NO_APP_INTERVALS=1 E2E_IGNORE_RAWMODE=1 E2E_TTY_COLS=100 E2E_TTY_ROWS=30 node --test --test-concurrency=1 --test-timeout=30000 --test-force-exit tests/e2e/terminal/*.test.mjs",
"prepublishOnly": "npm run build",
"release:patch": "npm ci && npm version patch && npm publish --access public",
"release:minor": "npm ci && npm version minor && npm publish --access public",
"release:major": "npm ci && npm version major && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-era/devteam.git"
},
"bugs": {
"url": "https://github.com/agent-era/devteam/issues"
},
"homepage": "https://github.com/agent-era/devteam#readme",
"publishConfig": {
"access": "public"
},
"private": false,
"preferGlobal": true,
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./cores/*": "./dist/cores/*.js",
"./test-helpers/*": "./dist-tests/tests/fakes/*.js",
"./config": "./dist/config.js"
},
"files": [
"dist",
"dist-tests",
"scripts",
"README.md",
"CLAUDE.md",
"CHANGELOG.md"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"ink": "^5.2.1",
"ink-syntax-highlight": "^2.0.2",
"marked": "^15.0.12",
"react": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@testing-library/react": "^14.3.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"babel-jest": "^30.3.0",
"ink-testing-library": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-environment-node": "^30.3.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}