@metyatech/task-tracker 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -104,6 +104,13 @@ npm run format:check # Prettier (check)
104
104
  npm run verify # format:check + lint + build + test
105
105
  ```
106
106
 
107
+ ## Community
108
+
109
+ - [Security Policy](SECURITY.md)
110
+ - [Contributing](CONTRIBUTING.md)
111
+ - [Code of Conduct](CODE_OF_CONDUCT.md)
112
+ - [Changelog](CHANGELOG.md)
113
+
107
114
  ## License
108
115
 
109
- MIT © metyatech
116
+ MIT © [metyatech](https://github.com/metyatech)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metyatech/task-tracker",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Persistent task lifecycle tracker for AI agent sessions",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,7 +29,7 @@
29
29
  "scripts": {
30
30
  "build": "tsup",
31
31
  "test": "vitest run",
32
- "lint": "eslint src --ext .ts",
32
+ "lint": "eslint src",
33
33
  "format": "prettier --write \"src/**/*.ts\" \"*.json\" \"*.md\"",
34
34
  "format:check": "prettier --check \"src/**/*.ts\" \"*.json\" \"*.md\"",
35
35
  "verify": "npm run format:check && npm run lint && npm run build && npm run test"
@@ -40,13 +40,13 @@
40
40
  "nanoid": "^5.0.7"
41
41
  },
42
42
  "devDependencies": {
43
+ "@eslint/js": "^9.0.0",
43
44
  "@types/node": "^20.0.0",
44
- "@typescript-eslint/eslint-plugin": "^7.0.0",
45
- "@typescript-eslint/parser": "^7.0.0",
46
- "eslint": "^8.57.0",
45
+ "eslint": "^9.0.0",
47
46
  "prettier": "^3.2.0",
48
47
  "tsup": "^8.0.0",
49
48
  "typescript": "^5.4.0",
49
+ "typescript-eslint": "^8.0.0",
50
50
  "vitest": "^1.4.0"
51
51
  }
52
52
  }