Files
truthmark/package.json
T

71 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2026-05-09 17:58:44 +10:00
{
"name": "truthmark",
"version": "2.2.2",
2026-05-09 17:58:44 +10:00
"description": "Git-native, branch-scoped truth workflow installer for local AI coding agents.",
"license": "MIT",
"type": "module",
2026-05-09 19:31:56 +10:00
"keywords": [
"ai",
"agent",
"cli",
"documentation",
"git",
"truth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/merlinhu1/truthmark.git"
},
"homepage": "https://github.com/merlinhu1/truthmark#readme",
"bugs": {
"url": "https://github.com/merlinhu1/truthmark/issues"
},
2026-05-09 17:58:44 +10:00
"bin": {
"truthmark": "dist/main.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"prepack": "npm run build",
2026-05-09 17:58:44 +10:00
"dev": "tsx src/cli/main.ts",
"format:check": "prettier --check eslint.config.js package.json package-lock.json tests/package-files.test.ts tsconfig.json vitest.config.ts",
"lint": "eslint .",
"package:check": "vitest run tests/package-files.test.ts",
"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",
2026-05-09 17:58:44 +10:00
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test && npm run build"
2026-05-09 17:58:44 +10:00
},
"dependencies": {
"ajv": "^8.17.1",
"commander": "^14.0.1",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"micromatch": "^4.0.8",
"remark-parse": "^11.0.0",
2026-05-16 03:55:55 +10:00
"typescript": "^5.9.3",
2026-05-09 17:58:44 +10:00
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
2026-05-09 17:58:44 +10:00
"@types/node": "^24.9.1",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
2026-05-09 17:58:44 +10:00
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript-eslint": "^8.59.2",
2026-05-09 17:58:44 +10:00
"vitest": "^4.0.8"
2026-06-16 00:55:23 +10:00
},
"overrides": {
"esbuild": "0.28.1"
2026-05-09 17:58:44 +10:00
}
}