sequential-thinking-engine-custom
Version:
Sequential Thinking Engine v3.0 - 完全実装5軸思考品質評価システム with Claude Code サブエージェント統合
81 lines (80 loc) • 2.52 kB
JSON
{
"name": "sequential-thinking-engine-custom",
"version": "3.0.1",
"description": "Sequential Thinking Engine v3.0 - 完全実装5軸思考品質評価システム with Claude Code サブエージェント統合",
"main": "dist/index.js",
"type": "module",
"bin": {
"thinking-engine-custom": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Shinya-Reiji/sequential-thinking-engine-custom.git"
},
"bugs": {
"url": "https://github.com/Shinya-Reiji/sequential-thinking-engine-custom/issues"
},
"homepage": "https://github.com/Shinya-Reiji/sequential-thinking-engine-custom#readme",
"files": [
"dist/**/*",
"src/agents/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "jest --testPathPattern=e2e --testTimeout=60000",
"test:performance": "jest --testPathPattern=performance --testTimeout=120000",
"test:constitutional": "jest --testPathPattern=constitutional",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:fast": "jest --testPathPattern=unit --coverage=false",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e && npm run test:constitutional",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage temp-test",
"pretest": "npm run type-check",
"posttest": "npm run clean"
},
"keywords": [
"thinking",
"sequential",
"ai",
"quality-evaluation",
"claude-code",
"subagent",
"constitutional-ai",
"5-axis-evaluation",
"cognitive-process",
"thinking-optimization",
"quality-improvement",
"typescript-first"
],
"author": "Claude Code Tools",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"fs-extra": "^11.0.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"ts-node": "^10.9.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.1",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
}
}