truthmark 2.2.6 → 2.3.0
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/README.md +14 -22
- package/dist/main.js +2776 -2303
- package/dist/main.js.map +1 -1
- package/docs/README.md +18 -16
- package/docs/readmes/README.ar.md +16 -21
- package/docs/readmes/README.de.md +16 -21
- package/docs/readmes/README.el.md +16 -21
- package/docs/readmes/README.es.md +16 -21
- package/docs/readmes/README.fr.md +16 -21
- package/docs/readmes/README.id.md +16 -21
- package/docs/readmes/README.it.md +16 -21
- package/docs/readmes/README.ja.md +16 -21
- package/docs/readmes/README.ko.md +16 -21
- package/docs/readmes/README.pl.md +16 -21
- package/docs/readmes/README.pt.md +16 -21
- package/docs/readmes/README.ru.md +16 -21
- package/docs/readmes/README.tr.md +16 -21
- package/docs/readmes/README.vi.md +16 -21
- package/docs/readmes/README.zh.md +16 -21
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "truthmark",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Git-native, branch-scoped truth workflow installer for local AI coding agents.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"build": "tsup",
|
|
51
51
|
"prepack": "npm run build",
|
|
52
52
|
"dev": "tsx src/cli/main.ts",
|
|
53
|
-
"format:check": "prettier --check eslint.config.js package.json package-lock.json tests/package-files.test.ts tsconfig.json
|
|
53
|
+
"format:check": "prettier --check eslint.config.js package.json package-lock.json tests/package-files.test.ts tsconfig.json",
|
|
54
54
|
"lint": "eslint .",
|
|
55
|
-
"package:check": "
|
|
55
|
+
"package:check": "node --import tsx --test --test-concurrency=1 tests/package-files.test.ts",
|
|
56
56
|
"release:check": "npm run lint && npm run format:check && npm run typecheck && npm run test && npm run build && npm run package:check && npm audit --omit=dev",
|
|
57
|
-
"test": "
|
|
58
|
-
"test:watch": "
|
|
57
|
+
"test": "node --import tsx --test --test-concurrency=1 \"tests/**/*.test.ts\"",
|
|
58
|
+
"test:watch": "node --watch --import tsx --test --test-concurrency=1 \"tests/**/*.test.ts\"",
|
|
59
59
|
"typecheck": "tsc --noEmit",
|
|
60
60
|
"check": "npm run lint && npm run typecheck && npm run test && npm run build"
|
|
61
61
|
},
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
"@eslint/js": "^9.39.4",
|
|
76
76
|
"@types/node": "^24.9.1",
|
|
77
77
|
"eslint": "^9.39.4",
|
|
78
|
+
"expect": "^30.2.0",
|
|
78
79
|
"prettier": "^3.8.3",
|
|
79
80
|
"tsup": "^8.5.0",
|
|
80
81
|
"tsx": "^4.20.6",
|
|
81
|
-
"typescript-eslint": "^8.59.2"
|
|
82
|
-
"vitest": "^4.0.8"
|
|
82
|
+
"typescript-eslint": "^8.59.2"
|
|
83
83
|
},
|
|
84
84
|
"overrides": {
|
|
85
85
|
"esbuild": "0.28.1"
|