taskin 1.0.13 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taskin",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Task management system integrated with Git workflows",
|
|
5
5
|
"motivation": "Provide a CLI tool for task management integrated with Git workflows",
|
|
6
6
|
"solve": "Simplifies task tracking and management directly from the command line",
|
|
@@ -67,22 +67,14 @@
|
|
|
67
67
|
"README.md",
|
|
68
68
|
"LICENSE"
|
|
69
69
|
],
|
|
70
|
-
"scripts": {
|
|
71
|
-
"build": "pnpm run build:dashboard && tsup",
|
|
72
|
-
"build:dashboard": "cd ../dashboard && pnpm run build:app && cd ../cli && rm -rf dashboard-dist && cp -r ../dashboard/dist-app dashboard-dist",
|
|
73
|
-
"clean": "rm -rf dist dashboard-dist coverage .turbo test-temp-e2e",
|
|
74
|
-
"dev": "tsup --watch",
|
|
75
|
-
"format": "prettier --write .",
|
|
76
|
-
"format:check": "prettier --check .",
|
|
77
|
-
"lint": "eslint .",
|
|
78
|
-
"lint:fix": "eslint . --fix",
|
|
79
|
-
"prepublishOnly": "pnpm build",
|
|
80
|
-
"test": "vitest run",
|
|
81
|
-
"test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
|
|
82
|
-
"test:coverage": "vitest run --coverage",
|
|
83
|
-
"typecheck": "tsc --noEmit"
|
|
84
|
-
},
|
|
85
70
|
"dependencies": {
|
|
71
|
+
"@opentask/taskin-file-system-provider": "^2.0.0",
|
|
72
|
+
"@opentask/taskin-git-utils": "^2.0.0",
|
|
73
|
+
"@opentask/taskin-task-manager": "^1.0.5",
|
|
74
|
+
"@opentask/taskin-task-server-mcp": "^0.1.1",
|
|
75
|
+
"@opentask/taskin-task-server-ws": "^0.1.0",
|
|
76
|
+
"@opentask/taskin-types": "^1.0.5",
|
|
77
|
+
"@opentask/taskin-utils": "^1.0.5",
|
|
86
78
|
"@types/express": "^5.0.5",
|
|
87
79
|
"@types/inquirer": "^9.0.9",
|
|
88
80
|
"@types/play-sound": "^1.1.2",
|
|
@@ -95,16 +87,24 @@
|
|
|
95
87
|
"zod": "^3.25.76"
|
|
96
88
|
},
|
|
97
89
|
"devDependencies": {
|
|
98
|
-
"@opentask/taskin-fs-provider": "workspace:*",
|
|
99
|
-
"@opentask/taskin-task-manager": "workspace:*",
|
|
100
|
-
"@opentask/taskin-task-server-mcp": "workspace:*",
|
|
101
|
-
"@opentask/taskin-task-server-ws": "workspace:*",
|
|
102
|
-
"@opentask/taskin-types": "workspace:*",
|
|
103
|
-
"@opentask/taskin-utils": "workspace:*",
|
|
104
90
|
"@types/node": "^20.19.24",
|
|
105
91
|
"eslint": "^9.39.1",
|
|
106
|
-
"tsup": "^8.5.
|
|
92
|
+
"tsup": "^8.5.1",
|
|
107
93
|
"typescript": "^5.9.3",
|
|
108
94
|
"vitest": "^1.6.1"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"build": "pnpm run build:dashboard && tsup",
|
|
98
|
+
"build:dashboard": "cd ../dashboard && pnpm run build:app && cd ../cli && rm -rf dashboard-dist && cp -r ../dashboard/dist-app dashboard-dist",
|
|
99
|
+
"clean": "rm -rf dist dashboard-dist coverage .turbo test-temp-e2e",
|
|
100
|
+
"dev": "tsup --watch",
|
|
101
|
+
"format": "prettier --write .",
|
|
102
|
+
"format:check": "prettier --check .",
|
|
103
|
+
"lint": "eslint .",
|
|
104
|
+
"lint:fix": "eslint . --fix",
|
|
105
|
+
"test": "vitest run",
|
|
106
|
+
"test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
|
|
107
|
+
"test:coverage": "vitest run --coverage",
|
|
108
|
+
"typecheck": "tsc --noEmit"
|
|
109
109
|
}
|
|
110
|
-
}
|
|
110
|
+
}
|