-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "task-sync",
"version": "2026.2.7",
"description": "Sync tasks between Google Tasks and Microsoft To Do",
"main": "index.js",
"scripts": {
"test": "vitest run",
"build": "tsup",
"dev": "tsx src/cli.ts",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"oauth:google": "tsx scripts/google_oauth.ts",
"oauth:microsoft": "tsx scripts/microsoft_oauth.ts",
"web:dev": "npm run build && npm run --prefix web dev",
"web:build": "npm run build && npm run --prefix web build",
"web:start": "npm run --prefix web start",
"web:install": "npm install --prefix web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salaamdev/task-sync.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/salaamdev/task-sync/issues"
},
"homepage": "https://github.com/salaamdev/task-sync#readme",
"engines": {
"node": ">=22"
},
"bin": {
"task-sync": "dist/cli.js"
},
"dependencies": {
"commander": "^12.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.19.7",
"eslint": "^9.39.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^2.1.9"
}
}