-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "@claaslange/agentsync",
"version": "0.2.0",
"description": "Sync one canonical agent-instructions template to multiple harness-specific global instruction file locations.",
"type": "module",
"license": "MIT",
"author": "claaslange",
"homepage": "https://github.com/claaslange/agentsync",
"repository": {
"type": "git",
"url": "git+https://github.com/claaslange/agentsync.git"
},
"bugs": {
"url": "https://github.com/claaslange/agentsync/issues"
},
"keywords": [
"agent",
"agentsync",
"instructions",
"prompts",
"sync",
"codex",
"claude",
"copilot",
"prompt-engineering",
"developer-tools",
"cli"
],
"bin": {
"agentsync": "./bin/agentsync"
},
"files": ["bin/", "dist/", "src/", "example/", "AGENTS.md", "LICENSE", "README.md"],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && node ./scripts/copy-schema.mjs",
"sync": "bun ./bin/agentsync",
"dry-run": "bun ./bin/agentsync --dry-run",
"check": "bun ./bin/agentsync --check",
"test": "npm run build && node --test",
"lint": "biome check . --error-on-warnings",
"format": "biome format . --write",
"prepack": "npm run build"
},
"dependencies": {
"liquidjs": "^10.21.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.0.0",
"typescript": "^5.0.0"
}
}