UNPKG

@contentmark/cli

Version:

Command-line tools for ContentMark protocol validation and generation

77 lines (76 loc) 1.93 kB
{ "name": "@contentmark/cli", "version": "1.0.0", "description": "Command-line tools for ContentMark protocol validation and generation", "main": "dist/index.js", "bin": { "contentmark": "dist/cli.js" }, "scripts": { "build": "tsup src/cli.ts --format cjs --target node16 --clean", "dev": "tsup src/cli.ts --format cjs --target node16 --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src tests --ext .ts", "lint:fix": "eslint src tests --ext .ts --fix", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build && npm test", "release": "semantic-release" }, "keywords": [ "contentmark", "ai", "content", "protocol", "validation", "cli", "ai-content", "web-standards" ], "author": "ContentMark Alliance", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/contentmark/cli.git" }, "bugs": { "url": "https://github.com/contentmark/cli/issues" }, "homepage": "https://contentmark.org", "engines": { "node": ">=16.0.0" }, "files": [ "dist/", "README.md", "LICENSE" ], "dependencies": { "@types/node-fetch": "^2.6.4", "ajv": "^8.12.0", "ajv-formats": "^2.1.1", "chalk": "^4.1.2", "commander": "^11.1.0", "fs-extra": "^11.1.1", "inquirer": "^8.2.6", "js-yaml": "^4.1.0", "node-fetch": "^2.7.0", "ora": "^5.4.1" }, "devDependencies": { "@types/fs-extra": "^11.0.2", "@types/inquirer": "^9.0.4", "@types/jest": "^29.5.5", "@types/js-yaml": "^4.0.9", "@types/node": "^16.18.0", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "eslint": "^8.50.0", "jest": "^29.7.0", "semantic-release": "^21.1.2", "ts-jest": "^29.1.1", "tsup": "^7.2.0", "typescript": "^5.2.2" } }