-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.63 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.63 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
{
"name": "@iloom/cli",
"version": "0.13.4",
"description": "Control plane for maintaining alignment between you and Claude Code as you work across multiple issues using isolated environments, visible context, and multi-agent workflows to scale understanding, not just output",
"keywords": [
"ai",
"claude",
"workspace-management",
"git-worktree",
"developer-productivity",
"parallel-development",
"automation",
"ai-assisted-development"
],
"homepage": "https://github.com/iloom-ai/iloom-cli#readme",
"bugs": {
"url": "https://github.com/iloom-ai/iloom-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iloom-ai/iloom-cli.git"
},
"license": "BUSL-1.1",
"author": {
"name": "iloom",
"email": "adam@iloom.ai"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"iloom": "./dist/cli.js",
"il": "./dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.16.1+sha512.0e155aa2629db8672b49e8475da6226aa4bdea85fdcdfdc15350874946d4f3c91faaf64cbdc4a5d1ab8002f473d5c3fcedcd197989cf0390f9badd3c04678706",
"scripts": {
"build": "tsup && pnpm run export-schema && pnpm run copy-docs",
"copy-docs": "tsx scripts/copy-docs.ts",
"export-schema": "tsx scripts/export-schema.ts",
"dev": "tsup --watch",
"test": "vitest run --bail 10",
"test:watch": "vitest --watch --bail 10",
"test:coverage": "vitest run --coverage --bail 10",
"test:hanging": "vitest run --reporter=hanging-process",
"test:ui": "vitest --ui",
"lint": "eslint . --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"compile": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate:commit": "pnpm run compile && pnpm run lint && pnpm run test",
"clean": "rimraf dist",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"dependencies": {
"@linear/sdk": "^65.1.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"deepmerge": "^4.3.1",
"dotenv-flow": "^4.1.0",
"execa": "^8.0.1",
"extended-markdown-adf-parser": "^2.4.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.8",
"inquirer": "^9.2.12",
"jsonc-parser": "^3.3.1",
"omelette": "^0.4.17",
"ora": "^7.0.1",
"posthog-node": "^4.0.0",
"proper-lockfile": "^4.1.2",
"string-width": "^6.1.0",
"uuid": "^11.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@fast-check/vitest": "^0.2.2",
"@types/fs-extra": "^11.0.4",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.8.10",
"@types/proper-lockfile": "^4.1.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.0.1",
"fast-check": "^3.13.2",
"husky": "^9.1.7",
"memfs": "^4.49.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.2.2",
"vitest": "^2.1.0",
"zod-to-json-schema": "^3.24.6"
},
"engines": {
"node": ">=16.0.0"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
}
}