This repository was archived by the owner on Sep 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.93 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.93 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
{
"name": "task-master-sync",
"version": "0.2.1",
"description": "A bidirectional synchronization tool between TaskMaster AI and Monday.com with automatic item recreation",
"main": "src/index.js",
"bin": {
"taskmaster-sync": "./src/cli/index.js",
"taskmaster-sync-get-columns": "./scripts/get-monday-columns.js"
},
"files": [
"src/**/*",
"README.md",
"README-BidirectionalSync.md",
"LICENSE",
"sync-config.example.json",
"env.example",
"scripts/postinstall.js",
"scripts/get-monday-columns.js"
],
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"push": "node src/cli/index.js push",
"pull": "node src/cli/index.js pull",
"get-columns": "node scripts/get-monday-columns.js",
"prepublishOnly": "npm run lint && npm test",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"taskmaster",
"monday.com",
"sync",
"bidirectional",
"auto-recreation",
"productivity",
"task-management",
"integration"
],
"author": {
"name": "Brian Kennedy",
"email": "[email protected]",
"url": "https://integrityxd.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/integritystl/task-master-sync.git"
},
"bugs": {
"url": "https://github.com/integritystl/task-master-sync/issues"
},
"homepage": "https://github.com/integritystl/task-master-sync#readme",
"dependencies": {
"axios": "^1.9.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"fs-extra": "^11.2.0",
"monday-sdk-js": "^0.5.6",
"ora": "^8.2.0",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jest": "^30.0.0",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}