-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.89 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
{
"name": "@mrmtsu/mcms-cli",
"version": "0.7.4",
"description": "Unofficial microCMS CLI for Content API and Management API automation (AI/CI friendly)",
"license": "MIT",
"homepage": "https://github.com/mrmtsu/mcms-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mrmtsu/mcms-cli.git"
},
"bugs": {
"url": "https://github.com/mrmtsu/mcms-cli/issues"
},
"keywords": [
"microcms",
"microcms-cli",
"cli",
"headless-cms",
"content-api",
"management-api",
"ai-agent",
"ci"
],
"type": "module",
"bin": {
"microcms": "dist/cli.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check:ci": "npm run skill:check && npm run lint && npm run format:check && npm run typecheck && npm run test && npm run build",
"dev": "tsx src/cli.ts",
"hooks:install": "node scripts/install-git-hooks.mjs",
"lint": "oxlint --deny-warnings src scripts tests vitest.config.ts",
"format": "oxfmt --write src scripts tests vitest.config.ts",
"format:check": "oxfmt --check src scripts tests vitest.config.ts",
"preflight:pr": "npm run check:ci",
"prepack": "npm run build",
"skill:check": "tsx scripts/generate-skill.ts --check",
"skill:generate": "tsx scripts/generate-skill.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@mrmtsu/microcms-schema-adapter": "^0.1.0",
"commander": "^14.0.3",
"microcms-document-mcp-server": "0.2.5",
"zod": "^4.3.6"
},
"optionalDependencies": {
"keytar": "^7.9.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.49.0",
"tsx": "^4.19.3",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
}
}