package.json•2.93 kB
{
"name": "@ownlytics/mcptix",
"version": "0.1.21",
"description": "A simple, powerful ticket tracking system with AI assistant integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bin": {
"mcptix": "./bin/mcptix.js"
},
"files": [
"dist",
"bin",
"templates",
"public",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:dev": "node scripts/build-dev.js",
"start": "node bin/mcptix.js start",
"start:dev:api": "node dist-dev/index.js --api --db-path=.mcptix-dev/data/mcptix.db --port=3030",
"test": "jest",
"test:watch": "jest --watch",
"test:api": "jest src/api",
"test:errors": "node scripts/parse-test-errors.js",
"test:errors:json": "node scripts/parse-test-errors.js --json --output errors.json",
"test:errors:filter": "node scripts/parse-test-errors.js --filter",
"test:errors:ai": "node scripts/parse-test-errors.js --json | grep -v 'Running tests' | grep -v 'Test Error'",
"clean": "rimraf dist",
"clean:dev": "rimraf dist-dev",
"lint": "eslint \"src/**/*.ts\" --max-warnings=0 --config eslint.config.mjs",
"lint:fix": "eslint \"src/**/*.ts\" --fix --config eslint.config.mjs",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"make-executable": "chmod +x scripts/*.js"
},
"keywords": [
"mcptix",
"ticket-tracking",
"kanban",
"project-management",
"task-management",
"mcp",
"model-context-protocol",
"ai-assistant",
"complexity-tracking"
],
"author": "mcptix Team",
"license": "BSL 1.1",
"repository": {
"type": "git",
"url": "https://github.com/ownlytics/mcptix.git"
},
"bugs": {
"url": "https://github.com/ownlytics/mcptix/issues"
},
"homepage": "https://github.com/ownlytics/mcptix#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"better-sqlite3": "^11.9.1",
"body-parser": "^2.2.0",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"open": "^8.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.17",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=14.0.0"
}
}