From 3fda600e209bb618e2c06d48c1e2c511d7da024e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 00:55:18 +0000 Subject: [PATCH] Add core configuration files --- package.json | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..edc4d5e --- /dev/null +++ b/package.json @@ -0,0 +1,50 @@ +{ + "name": "typeflow", + "version": "1.0.0", + "description": "CLI Type Dependency Tracer for TypeScript/JavaScript", + "main": "dist/index.js", + "bin": { + "typeflow": "./bin/typeflow" + }, + "scripts": { + "build": "tsc", + "watch": "tsc --watch", + "dev": "ts-node src/cli.ts", + "test": "jest", + "test:coverage": "jest --coverage", + "lint": "eslint src --ext .ts", + "format": "prettier --write src/**/*.ts" + }, + "keywords": [ + "typescript", + "type", + "dependency", + "graph", + "cli", + "visualization" + ], + "author": "", + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "^6.13.2", + "chokidar": "^3.6.0", + "commander": "^12.0.0", + "debug": "^4.3.4", + "glob": "^10.3.10", + "graphviz": "^0.0.9", + "jsonpath-plus": "^7.2.0", + "typescript": "^5.3.3" + }, + "devDependencies": { + "@types/debug": "^4.1.12", + "@types/glob": "^8.1.0", + "@types/jest": "^29.5.11", + "@types/node": "^20.10.6", + "jest": "^29.7.0", + "prettier": "^3.1.1", + "ts-jest": "^29.1.1", + "ts-node": "^10.9.2", + "@typescript-eslint/eslint-plugin": "^6.13.2", + "@typescript-eslint/parser": "^6.13.2" + } +}