41 lines
841 B
JSON

{
"name": "@open-matrix/cli",
"version": "0.1.0",
"description": "Package-author Matrix CLI for SDK projects.",
"type": "module",
"private": true,
"bin": {
"matrix": "./dist/bin/matrix.js"
},
"exports": {
".": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js",
"default": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"package.json",
"README.md",
"CONTRACT.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --test dist/__tests__/*.test.js",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@open-matrix/core": "workspace:*"
},
"devDependencies": {
"@types/node": "^25.0.10",
"typescript": "^5.7.0"
},
"license": "MIT",
"engines": {
"node": ">=20"
}
}