code-simplifier 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,77 +1,87 @@
1
- {
2
- "name": "code-simplifier",
3
- "version": "1.1.0",
4
- "description": "Code-Simplifier持续改进系统 - 自动化的代码质量监控、持续改进和知识管理工具(支持 ESLint、Git 钩子、自动修复、多语言分析、完整测试套件)",
5
- "keywords": [
6
- "code-quality",
7
- "continuous-improvement",
8
- "code-analysis",
9
- "quality-monitor",
10
- "best-practices",
11
- "code-simplification",
12
- "developer-tools",
13
- "eslint",
14
- "git-hooks",
15
- "auto-fix",
16
- "multi-language",
17
- "testing",
18
- "jest",
19
- "cypress"
20
- ],
21
- "author": "Claude Code <noreply@anthropic.com>",
22
- "license": "MIT",
23
- "homepage": "https://github.com/your-org/code-simplifier",
24
- "repository": {
25
- "type": "git",
26
- "url": "https://github.com/your-org/code-simplifier.git"
27
- },
28
- "bugs": {
29
- "url": "https://github.com/your-org/code-simplifier/issues"
30
- },
31
- "bin": {
32
- "code-simplifier": "./bin/code-simplifier.js",
33
- "cs": "./bin/code-simplifier.js"
34
- },
35
- "files": [
36
- "bin/",
37
- "lib/",
38
- "README.md",
39
- "LICENSE",
40
- "jest.config.js",
41
- "cypress.config.js"
42
- ],
43
- "engines": {
44
- "node": ">=14.0.0"
45
- },
46
- "scripts": {
47
- "test": "jest",
48
- "test:watch": "jest --watch",
49
- "test:unit": "jest tests/unit",
50
- "test:integration": "jest tests/integration",
51
- "test:e2e": "cypress run",
52
- "test:e2e:open": "cypress open",
53
- "test:coverage": "jest --coverage",
54
- "lint": "eslint bin lib",
55
- "lint:fix": "eslint bin lib --fix",
56
- "prepare": "husky install || echo 'husky not installed, skipping'"
57
- },
58
- "dependencies": {
59
- "chalk": "^4.1.2",
60
- "commander": "^11.1.0",
61
- "ora": "^5.4.1",
62
- "inquirer": "^8.2.6",
63
- "boxen": "^5.1.2",
64
- "update-notifier": "^6.0.0",
65
- "glob": "^10.3.10",
66
- "fs-extra": "^11.2.0"
67
- },
68
- "devDependencies": {
69
- "jest": "^29.7.0",
70
- "cypress": "^13.6.0",
71
- "eslint": "^8.57.0",
72
- "husky": "^8.0.3"
73
- },
74
- "publishConfig": {
75
- "access": "public"
76
- }
77
- }
1
+ {
2
+ "name": "code-simplifier",
3
+ "version": "1.2.0",
4
+ "description": "Code-Simplifier持续改进系统 - 自动化的代码质量监控、持续改进和知识管理工具(支持 ESLint、Git 钩子、自动修复、多语言分析、完整测试套件、AI驱动分析)",
5
+ "keywords": [
6
+ "code-quality",
7
+ "continuous-improvement",
8
+ "code-analysis",
9
+ "quality-monitor",
10
+ "best-practices",
11
+ "code-simplification",
12
+ "developer-tools",
13
+ "eslint",
14
+ "git-hooks",
15
+ "auto-fix",
16
+ "multi-language",
17
+ "testing",
18
+ "jest",
19
+ "cypress",
20
+ "ai-powered",
21
+ "openai",
22
+ "claude-api"
23
+ ],
24
+ "author": "Claude Code <noreply@anthropic.com>",
25
+ "license": "MIT",
26
+ "homepage": "https://github.com/your-org/code-simplifier",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/your-org/code-simplifier.git"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/your-org/code-simplifier/issues"
33
+ },
34
+ "bin": {
35
+ "code-simplifier": "bin/code-simplifier.js",
36
+ "cs": "bin/code-simplifier.js"
37
+ },
38
+ "files": [
39
+ "bin/",
40
+ "lib/",
41
+ "README.md",
42
+ "LICENSE",
43
+ "jest.config.js",
44
+ "cypress.config.js"
45
+ ],
46
+ "engines": {
47
+ "node": ">=14.0.0"
48
+ },
49
+ "scripts": {
50
+ "test": "jest",
51
+ "test:watch": "jest --watch",
52
+ "test:unit": "jest tests/unit",
53
+ "test:integration": "jest tests/integration",
54
+ "test:e2e": "cypress run",
55
+ "test:e2e:open": "cypress open",
56
+ "test:coverage": "jest --coverage",
57
+ "lint": "eslint bin lib",
58
+ "lint:fix": "eslint bin lib --fix",
59
+ "prepare": "husky install || echo 'husky not installed, skipping'"
60
+ },
61
+ "dependencies": {
62
+ "chalk": "^4.1.2",
63
+ "commander": "^11.1.0",
64
+ "ora": "^5.4.1",
65
+ "inquirer": "^8.2.6",
66
+ "boxen": "^5.1.2",
67
+ "update-notifier": "^6.0.0",
68
+ "glob": "^10.3.10",
69
+ "fs-extra": "^11.2.0",
70
+ "openai": "^4.20.0",
71
+ "@anthropic-ai/sdk": "^0.8.0",
72
+ "ml-matrix": "^6.10.0",
73
+ "simple-statistics": "^7.8.0"
74
+ },
75
+ "optionalDependencies": {
76
+ "tree-sitter": "^0.20.0"
77
+ },
78
+ "devDependencies": {
79
+ "jest": "^29.7.0",
80
+ "cypress": "^13.6.0",
81
+ "eslint": "^8.57.0",
82
+ "husky": "^8.0.3"
83
+ },
84
+ "publishConfig": {
85
+ "access": "public"
86
+ }
87
+ }