-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "@cobusgreyling/loop-sync",
"version": "1.0.0",
"description": "Detect and sync drift between Loop configuration files (STATE.md ↔ LOOP.md, Skills versions)",
"type": "module",
"main": "dist/cli.js",
"bin": {
"loop-sync": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "npm run build && node --test test/sync.test.mjs",
"prepublishOnly": "npm test"
},
"keywords": [
"loop-engineering",
"sync",
"drift-detection",
"configuration"
],
"author": "Cobus Greyling",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cobusgreyling/loop-engineering.git",
"directory": "tools/loop-sync"
},
"homepage": "https://github.com/cobusgreyling/loop-engineering/tree/main/tools/loop-sync#readme",
"bugs": {
"url": "https://github.com/cobusgreyling/loop-engineering/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.9.3"
}
}