metacoding
Version:
Cross-agent workflow skill for modern coding agents with gated planning, testing, verification, and handoff defaults
139 lines (138 loc) • 3.35 kB
JSON
{
"name": "metacoding",
"version": "2.0.1",
"description": "Cross-agent workflow skill for modern coding agents with gated planning, testing, verification, and handoff defaults",
"main": "lib/cli.js",
"types": "lib/cli.d.ts",
"bin": {
"metacoding": "bin/metacoding.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"validate-readme": "echo 'Validating README.md for npm publishing...' && test -f README.md && echo 'README.md exists and will be included in npm package'",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run build && npm run validate-readme",
"start": "node bin/metacoding.js"
},
"keywords": [
"coding-agent",
"codex-skill",
"development-workflow",
"ai-coding",
"code-quality",
"skill",
"developer-tools",
"programming-workflow",
"tdd",
"best-practices",
"automation",
"cli"
],
"author": {
"name": "Anton Kulikov",
"email": "anton.g.kulikov@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anton-g-kulikov/metacoding.git"
},
"homepage": "https://github.com/anton-g-kulikov/metacoding#readme",
"bugs": {
"url": "https://github.com/anton-g-kulikov/metacoding/issues"
},
"files": [
"bin/",
"lib/",
"skills/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"commander": "^11.1.0",
"inquirer": "^8.2.6",
"chalk": "^4.1.2",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"ora": "^5.4.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "test/tsconfig.json"
}
]
},
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"testMatch": [
"**/__tests__/**/*.ts",
"**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/**/__tests__/**",
"!src/**/index.ts"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 65,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2
}
}