This commit is contained in:
50
package.json
Normal file
50
package.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user