-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.33 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "refakts",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"refakts": "dist/command-line-parser/cli.js"
},
"scripts": {
"build": "tsc && cp src/core/commands/*.json dist/core/commands/ && cp src/core/commands/*.help.txt dist/core/commands/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "ts-node src/command-line-parser/cli.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src tests/integration tests/utils tests/unit --ext .ts --fix",
"quality": "ts-node src/dev/quality/quality-runner.ts",
"quality:full": "ts-node src/dev/quality/quality-runner.ts --no-limit",
"quality:baseline:generate": "ts-node src/dev/quality/baseline-cli.ts generate",
"quality:baseline:status": "ts-node src/dev/quality/baseline-cli.ts status",
"check-duplication": "jscpd src --threshold 10 --reporters console",
"check-comments": "ts-node src/dev/quality/comment-detector.ts src",
"update-docs": "ts-node src/dev/update-docs.ts",
"snooze": "ts-node src/dev/snooze-cli.ts",
"roadmap:vote": "ts-node src/dev/roadmap/index.ts vote",
"roadmap:add": "ts-node src/dev/roadmap/index.ts add",
"roadmap:remove": "ts-node src/dev/roadmap/index.ts remove",
"roadmap:status": "ts-node src/dev/roadmap/index.ts status",
"usage-report": "ts-node scripts/usage-report.ts",
"usage-consolidate": "ts-node scripts/consolidate-usage.ts",
"check-junk-files": "ts-node scripts/check-junk-files.ts",
"test:fixture": "ts-node tests/scripts/fixture-runner.ts",
"test:fixture:approve": "ts-node tests/scripts/fixture-approver.ts",
"test:fixture:approve:all": "ts-node tests/scripts/fixture-approver.ts --all",
"test:fixture:review": "ts-node tests/scripts/fixture-reviewer.ts",
"test:skipped": "node scripts/list-skipped-tests.js",
"prepack": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"keywords": [
"typescript",
"refactoring",
"ast",
"code-transformation",
"cli",
"ts-morph",
"developer-tools"
],
"author": "Ivett Ördög. (http://ivettordog.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/devill/refakts.git"
},
"bugs": {
"url": "https://github.com/devill/refakts/issues"
},
"homepage": "https://github.com/devill/refakts#readme",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/**/*",
"*.d.ts",
"README.md",
"LICENSE.md"
],
"description": "TypeScript refactoring tool built for AI coding agents to perform precise refactoring operations via command line instead of requiring complete code regeneration.",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.7",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"approvals": "^7.3.0",
"complexity-report": "^2.0.0-alpha",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"jest": "^30.0.3",
"jscpd": "^4.0.5",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^6.1.3",
"commander": "^14.0.0",
"cyclomatic-complexity": "^1.2.5",
"js-yaml": "^4.1.0",
"ts-morph": "^26.0.0",
"typhonjs-escomplex": "^0.1.0"
}
}