-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 2.02 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
{
"name": "agent-mimir-pck",
"private": false,
"scripts": {
"build": "turbo run build",
"start-cli": "dotenv -- node scripts/config-setup.js && cd .temp_custom_deps && npm install && cd .. && cross-env MIMIR_CFG_PATH=$INIT_CWD/.temp_custom_deps npm run internalStart",
"start-discord": "dotenv -- node scripts/config-setup.js && cd .temp_custom_deps && npm install && cd .. && cross-env MIMIR_CFG_PATH=$INIT_CWD/.temp_custom_deps npm run internalStartDiscord",
"start-discord2": "dotenv -- node scripts/config-setup.js && cd .temp_custom_deps && cd .. && cross-env MIMIR_CFG_PATH=$INIT_CWD/.temp_custom_deps npm run internalStartDiscordNoBuild",
"internalStartDiscord": "npm run build && dotenv -- npm run start -w agent-mimir-discord",
"internalStartDiscordNoBuild": "dotenv -- npm run start -w agent-mimir-discord",
"internalStart": "npm run build && dotenv -- npm run start -w agent-mimir-cli",
"dev": "turbo run dev",
"lint": "turbo run lint",
"publish": "bash scripts/release-branch.sh && turbo run build lint && npm run release -w agent-mimir && echo '🔗 Open https://github.com/Altaflux/agent-mimir/compare/release?expand=1 and merge the release PR'",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"author": "Altaflux",
"repository": {
"type": "git",
"url": "https://github.com/Altaflux/agent-mimir.git"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv-cli": "latest",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"fs-extra": "^11.1.1",
"prettier": "^2.5.1",
"release-it": "^15.10.0",
"turbo": "latest",
"typescript-transpile-only": "0.0.4"
},
"packageManager": "[email protected]",
"workspaces": [
"agent-mimir",
"agent-mimir-cli",
"agent-mimir-discord",
"tools/*",
".temp_custom_deps"
],
"dependencies": {
"@langchain/core": "0.3.26",
"langchain": "0.3.8"
}
}