-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 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
77
78
79
{
"name": "@codapult/cli",
"version": "0.19.2",
"description": "Open-source CLI and MCP server for Codapult SaaS projects, with architecture guardrails for AI-assisted development",
"license": "MIT",
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621",
"engines": {
"node": ">=20.19.0"
},
"type": "module",
"bin": {
"codapult": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "node scripts/clean-dist.mjs",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"dev": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release:check": "pnpm lint && pnpm format:check && pnpm typecheck && pnpm test && pnpm build && npm pack --dry-run",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "tsc -p tsconfig.build.json",
"release": "release-it"
},
"keywords": [
"codapult",
"saas",
"boilerplate",
"cli",
"nextjs",
"mcp",
"ai-agents",
"architecture",
"guardrails",
"drizzle",
"deployment"
],
"homepage": "https://codapult.dev",
"repository": {
"type": "git",
"url": "https://github.com/codapult/codapult-cli.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@codapult/guard": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"commander": "^15.0.0",
"picocolors": "^1.1.1",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"zod": "^4.6.5"
},
"devDependencies": {
"@js-toolkit/config-utils": "^1.0.1",
"@js-toolkit/eslint-config": "^1.3.2",
"@js-toolkit/prettier-config": "^1.0.1",
"@js-toolkit/tsconfig": "^1.0.1",
"@release-it/conventional-changelog": "^12.0.2",
"@types/node": "^26.6.2",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/coverage-v8": "^5.0.1",
"eslint": "^10.11.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"prettier": "^3.9.8",
"release-it": "^21.1.0",
"typescript-eslint": "^8.70.1",
"vitest": "^5.0.1"
}
}