-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.75 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.75 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "linchat",
"version": "1.3.1",
"description": "An intelligent AI-powered command-line chat assistant with document processing, code review, and file management capabilities",
"main": "dist/index.js",
"bin": {
"l": "dist/index.js",
"link": "dist/index.js",
"linchat": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"README.en.md",
"README.zh.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "echo \"No tests specified\" && exit 0",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"postinstall": "node dist/postinstall.js || true"
},
"keywords": [
"ai",
"cli",
"chat",
"assistant",
"ollama",
"code-review",
"document-processing",
"file-management",
"developer-tools",
"productivity",
"automation"
],
"author": {
"name": "Link",
"email": "link@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/link/linchat.git"
},
"bugs": {
"url": "https://github.com/link/linchat/issues"
},
"homepage": "https://github.com/link/linchat#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@types/figlet": "^1.7.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cosmiconfig": "^8.3.6",
"date-fns": "^2.30.0",
"figlet": "^1.9.3",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"highlight.js": "^11.9.0",
"inquirer": "^9.2.12",
"joi": "^17.11.0",
"marked": "^9.1.6",
"ollama": "^0.5.0",
"ora": "^7.0.1",
"readline": "^1.3.0",
"uuid": "^9.0.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/index.ts"
]
}
}