-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.24 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
{
"name": "@codemcp/ade",
"version": "0.11.0",
"description": "ADE CLI — Agentic Development Environment setup and configuration tool",
"license": "MIT",
"keywords": [
"ade",
"agentic",
"development",
"cli",
"mcp"
],
"repository": {
"type": "git",
"url": "https://github.com/codemcp/ade"
},
"engines": {
"node": ">=22",
"pnpm": ">=10.0.0"
},
"type": "module",
"bin": {
"ade": "packages/cli/bin/ade.mjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"packages/cli/bin",
"packages/cli/dist"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean:build",
"dev": "turbo run dev",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest --run",
"test:watch": "vitest",
"lint:all": "turbo run --parallel lint",
"lint:fix:all": "turbo run --parallel lint:fix",
"format:check:all": "turbo run --parallel format",
"format:all": "turbo run --parallel format:fix",
"typecheck:all": "turbo run --parallel typecheck",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"knip": "knip",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@tsconfig/node22": "catalog:",
"@turbo/gen": "^2.8.17",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"cytoscape": "3.31.0",
"cytoscape-cose-bilkent": "4.1.0",
"dayjs": "1.11.13",
"debug": "4.4.0",
"husky": "^9.1.7",
"knip": "^5.86.0",
"lint-staged": "^16.0.0",
"oxlint": "catalog:",
"prettier": "catalog:",
"turbo": "^2.8.17",
"typescript": "catalog:",
"vitepress": "1.6.2",
"vitepress-plugin-mermaid": "2.0.17",
"vitest": "catalog:",
"zod": "catalog:"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"yaml": "^2.8.2"
}
}