Files
truthmark/package.json
T
e3edcc8afa feat: v2.3.0 add interactive platform selection to init (#38)
* feat: add interactive platform selection to init

* chore: remove completed OpenSpec artifacts

* chore: remove implemented design note

* fix: protect init lifecycle from unsafe config paths

* fix: support clearing init platforms from CLI

* docs: retire config command from repository rules

* docs: align init lifecycle and clear-platform contracts

* docs: keep repository guidance current-state focused

* docs: limit cleanup to repository-native documents

* docs: preserve historical version notes

---------

Co-authored-by: MerlinH <merlinh221@gmail.com>
2026-07-31 18:54:10 +10:00

88 lines
2.5 KiB
JSON

{
"name": "truthmark",
"version": "2.3.0",
"description": "Git-native, branch-scoped truth workflow installer for local AI coding agents.",
"license": "MIT",
"type": "module",
"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"
},
"bin": {
"truthmark": "dist/main.js"
},
"files": [
"dist",
"README.md",
"docs/readmes/README.ar.md",
"docs/readmes/README.de.md",
"docs/readmes/README.el.md",
"docs/readmes/README.es.md",
"docs/readmes/README.fr.md",
"docs/readmes/README.id.md",
"docs/readmes/README.it.md",
"docs/readmes/README.ja.md",
"docs/readmes/README.ko.md",
"docs/README.md",
"docs/readmes/README.pl.md",
"docs/readmes/README.pt.md",
"docs/readmes/README.ru.md",
"docs/readmes/README.tr.md",
"docs/readmes/README.vi.md",
"docs/readmes/README.zh.md"
],
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"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",
"lint": "eslint .",
"package:check": "node --import tsx --test --test-concurrency=1 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",
"test": "node --import tsx --test --test-concurrency=1 \"tests/**/*.test.ts\"",
"test:watch": "node --watch --import tsx --test --test-concurrency=1 \"tests/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"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",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.9.1",
"eslint": "^9.39.4",
"expect": "^30.2.0",
"prettier": "^3.8.3",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript-eslint": "^8.59.2"
},
"overrides": {
"esbuild": "0.28.1"
}
}