UNPKG

symref

Version:

Static code checker for AI code agents (Windsurf, Cline, etc.)

68 lines (67 loc) 1.67 kB
{ "name": "symref", "version": "0.11.0", "description": "Static code checker for AI code agents (Windsurf, Cline, etc.)", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "symref": "dist/cli.js" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "scripts": { "refs": "node --loader ts-node/esm cli.ts refs", "dead": "node --loader ts-node/esm cli.ts dead", "trace": "node --loader ts-node/esm cli.ts trace", "callers": "node --loader ts-node/esm cli.ts callers", "build": "tsc", "postbuild": "chmod +x ./dist/cli.js", "prepare": "npm run build", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose" }, "keywords": [ "static-analysis", "typescript", "ai", "code-analysis", "windsurf", "cline" ], "author": "x4066x", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/x4066x/symref.git" }, "homepage": "https://github.com/x4066x/symref#readme", "bugs": { "url": "https://github.com/x4066x/symref/issues" }, "dependencies": { "chalk": "^5.3.0", "commander": "^11.0.0", "fs-extra": "^11.3.0", "glob": "^11.0.1", "ts-morph": "^19.0.0" }, "devDependencies": { "@types/chai": "^5.2.0", "@types/fs-extra": "^11.0.4", "@types/glob": "^8.1.0", "@types/jest": "^29.5.14", "@types/mocha": "^10.0.10", "@types/node": "^22.13.5", "@types/react": "^19.0.12", "jest": "^29.7.0", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "typescript": "^5.7.3" } }