@wasabeef/agentnote 0.1.5 → 0.1.6
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/dist/cli.js +629 -506
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wasabeef/agentnote",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Remember why your code changed. Link AI agent sessions to git commits.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"agentnote": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "
|
|
10
|
+
"build": "node build.mjs",
|
|
11
11
|
"dev": "tsx src/cli.ts",
|
|
12
|
-
"lint": "
|
|
12
|
+
"lint": "biome check src/",
|
|
13
|
+
"lint:fix": "biome check --write src/",
|
|
14
|
+
"format": "biome format --write src/",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
13
16
|
"test": "find src -name '*.test.ts' | xargs node --import tsx/esm --test",
|
|
14
17
|
"test:coverage": "find src -name '*.test.ts' | xargs node --import tsx/esm --test --experimental-test-coverage",
|
|
15
|
-
"prepublishOnly": "npm run build"
|
|
18
|
+
"prepublishOnly": "npm run build && npx publint"
|
|
16
19
|
},
|
|
17
20
|
"files": [
|
|
18
21
|
"dist"
|
|
@@ -30,8 +33,10 @@
|
|
|
30
33
|
"node": ">=20"
|
|
31
34
|
},
|
|
32
35
|
"devDependencies": {
|
|
36
|
+
"@biomejs/biome": "2.4.10",
|
|
33
37
|
"@types/node": "^25.5.0",
|
|
34
38
|
"esbuild": "^0.27.5",
|
|
39
|
+
"publint": "^0.3.18",
|
|
35
40
|
"tsx": "^4.20.0",
|
|
36
41
|
"typescript": "^6.0.2"
|
|
37
42
|
}
|