forked from orlan0045/doc-syncer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.02 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
{
"name": "doc-syncer",
"version": "0.2.0",
"description": "AI-powered documentation sync using Claude Code or Codex",
"type": "module",
"author": "Andrii Orlov",
"license": "MIT",
"keywords": [
"documentation",
"sync",
"ai",
"claude",
"codex",
"docs",
"git",
"automation"
],
"repository": {
"type": "git",
"url": "https://github.com/orlan0045/doc-syncer.git"
},
"homepage": "https://github.com/orlan0045/doc-syncer#readme",
"bugs": {
"url": "https://github.com/orlan0045/doc-syncer/issues"
},
"bin": {
"doc-syncer": "src/doc-sync.ts"
},
"files": [
"src/",
"doc-syncer.config.example.yml",
"tsconfig.json",
"README.md",
"LICENSE"
],
"scripts": {
"sync": "bun src/doc-sync.ts sync",
"sync:dry": "bun src/doc-sync.ts sync --dry-run",
"prepublishOnly": "echo 'Ready to publish'"
},
"dependencies": {
"yaml": "^2.6.0"
},
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.5"
}
}