-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.12 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
{
"name": "@jhb.software/payload-content-cli",
"version": "0.3.0",
"description": "A CLI for managing Payload CMS content, built for AI agents.",
"type": "module",
"exports": {
".": "./dist/cli.js",
"./plugin": "./dist/plugin/index.js"
},
"bin": {
"payload-content": "./bin/payload-content.js"
},
"files": [
"bin",
"dist",
"README.md",
"USAGE.md",
"LICENSE"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "rm -rf dist && tsc && cp src/agent-skill.md dist/",
"typecheck": "tsc --noEmit",
"lint": "oxlint src/",
"lint:fix": "oxlint --fix src/",
"format": "oxfmt src/",
"format:check": "oxfmt --check src/",
"prepare": "husky",
"prepublishOnly": "pnpm test && pnpm typecheck && pnpm lint && pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"example:dev": "pnpm --filter payload-content-cli-example dev",
"example:seed": "pnpm --filter payload-content-cli-example seed"
},
"keywords": [
"payload",
"payload-cms",
"cms",
"headless-cms",
"content-sync",
"filesystem",
"sync",
"cli",
"agent",
"ai",
"claude",
"lexical",
"richtext"
],
"author": "Jens Becker <info@jhb.software>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jhb-software/payload-content-cli.git"
},
"bugs": {
"url": "https://github.com/jhb-software/payload-content-cli/issues"
},
"homepage": "https://github.com/jhb-software/payload-content-cli#readme",
"packageManager": "pnpm@11.1.2",
"dependencies": {
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"vitest": "4.1.6"
},
"lint-staged": {
"src/**/*.ts": [
"oxlint --fix",
"oxfmt"
]
}
}