-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.49 KB
/
package.json
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
{
"name": "@rascaljs/ai-cli",
"version": "1.0.6",
"description": "",
"main": "index.js",
"type": "module",
"bin": {
"ai": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"ai-terminal.drawio.png"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"commit": "git-cz",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,json}\"",
"prepublishOnly": "npm run remove-husky",
"format:ci": "prettier --list-different \"**/*.{ts,tsx,js,jsx}\"",
"lint": "eslint \"src/**/*.{js,ts,jsx,tsx}\" --fix",
"lint:ci": "eslint \"src/**/*.{js,ts,jsx,tsx}\"",
"release": "pnpm run build && bumpp --push --tag && npm publish",
"remove-husky": "npm pkg delete scripts.postinstall"
},
"keywords": [
"ai",
"ollama",
"chat",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/Rascal-Coder/ai-terminal.git"
},
"author": {
"name": "Rascal-Coder",
"email": "menoqiqio@gmail.com",
"url": "https://github.com/Rascal-Coder"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/cli-progress": "^3.11.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.6",
"@types/progress": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"bumpp": "^9.4.1",
"commitizen": "^4.3.0",
"cz-git": "^1.9.3",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-delete": "^2.0.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"axios": "^1.7.2",
"chalk": "^5.3.0",
"cheerio": "1.0.0-rc.12",
"cli-spinners": "^3.0.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.3.2",
"marked": "^13.0.1",
"node-fetch": "^3.3.2",
"ollama": "^0.5.2",
"ora": "^8.0.1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"pnpm lint:ci",
"pnpm format:ci"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}