-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.59 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
{
"name": "@offline-ai/cli-plugin-cmd-brain",
"description": "Offline(local) AI Client Command to manage brains",
"version": "0.3.33",
"author": "Riceball LEE <snowyu.lee@gmail.com>",
"bin": {
"ai": "./bin/run.js"
},
"homepage": "https://github.com/offline-ai/cli-plugin-cmd-brain.js",
"repository": "https://github.com/offline-ai/cli-plugin-cmd-brain.js",
"bugs": "https://github.com/@offline-ai/cli-plugin-cmd-brain.js/issues",
"dependencies": {
"@isdk/ai-tool": "workspace:*",
"@isdk/ai-tool-downloader": "workspace:*",
"@isdk/ai-tool-llm": "workspace:*",
"@isdk/ai-tool-model": "workspace:*",
"@isdk/ai-tool-sqlite": "workspace:*",
"@oclif/core": "^4",
"@offline-ai/cli-common": "workspace:*",
"date-fns": "^3.6.0",
"enquirer": "^2.4.1",
"log-update": "^6.1.0"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^20",
"chai": "^5",
"eslint": "^8",
"eslint-config-oclif": "^5.2.0",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9",
"mocha": "^10",
"oclif": "^4.13.12",
"shx": "^0.3.4",
"ts-node": "^10",
"tsup": "^8.1.0",
"tsx": "^4.16.0",
"typescript": "^5"
},
"peerDependencies": {
"better-sqlite3": "*"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json",
"/theme.json"
],
"keywords": [
"oclif",
"prompt",
"ai",
"llm",
"programable prompt",
"agent",
"script",
"plugin",
"command",
"brain"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "ai",
"dirname": "ai",
"commands": "./dist/oclif/commands",
"hooks": {
"register": "./dist/oclif/hooks/init-tools"
}
},
"scripts": {
"build": "shx rm -rf dist && tsup",
"clean": "shx rm -fr oclif.manifest.json dist",
"lint": "eslint . --ext .ts",
"opack": "oclif pack",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "NODE_OPTIONS='--trace-warnings --no-warnings=ExperimentalWarning' oclif manifest && oclif readme",
"release": "pnpm run clean && pnpm run build && pnpm run prepack && git add -f README.md && git ci -m 'docs: update readme' || true && pnpm dlx commit-and-tag-version -s",
"release.alpha": "pnpm run release -- --prerelease alpha",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts"
}