-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.96 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.96 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
{
"name": "anoru",
"version": "1.0.7",
"type": "module",
"description": "Anoru - is an AWESOME CLI AI assistant for you. Ask me anything in telegram @anoru",
"dependencies": {
"@lsk4/algos": "^4.24.0",
"@lsk4/env": "^4.6.0",
"@lsk4/err": "^4.26.0",
"@lsk4/log": "^4.28.0",
"@types/play-sound": "^1.1.2",
"axios": "^1.9.0",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"fishbird": "^1.1.8",
"mic": "^2.1.2",
"node-vad": "^1.1.4",
"openai": "^4.97.0",
"ora": "^8.2.0",
"play-sound": "^1.1.6",
"terminal-image": "^3.1.1",
"zod": "^3.24.3"
},
"scripts": {
"start": " npm run start:lib",
"build": " tsc",
"start:dev": " npm run start:tsx",
"start:lib": " node lib",
"start:node": " node --experimental-strip-types src/index.ts",
"start:tsx": " tsx src/index.ts",
"dev": " npm run dev:tsx",
"dev:node": " node --experimental-strip-types --watch --watch-path=./src src/index.ts",
"dev:tsx": " tsx watch --include \"./src/*\" src/index.ts",
"test": " echo ok",
"release": " npm run build && npm test && npm version patch && npm publish"
},
"bin": {
"anoru": "./lib/cli.js"
},
"files": [
"lib/**/*",
"assets/**/*",
"package.json",
"README.md"
],
"devDependencies": {
"@lsk4/eslint-config": "^4.10.1",
"@lsk4/tsconfig": "^4.27.0",
"@types/node": "^22.14.1",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"prettier": "@lsk4/eslint-config/prettier",
"eslintConfig": {
"settings": {
"import/resolver": {
"typescript": {
"project": [
"tsconfig.json"
]
}
}
},
"extends": "@lsk4/eslint-config",
"rules": {
"no-await-in-loop": "off",
"no-promise-executor-return": "off"
}
}
}