-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "tai_scripts",
"version": "0.2.0",
"description": "Taelin AI Scripts",
"main": "./dist/askai/AskAI.js",
"types": "./dist/askai/AskAI.d.ts",
"exports": {
".": {
"require": "./dist/askai/AskAI.js",
"types": "./dist/askai/AskAI.d.ts"
}
},
"bin": {
"refactor": "./dist/tools/Refactor.js",
"holefill": "./dist/tools/HoleFill.js",
"csh": "./dist/tools/ChatSH.js",
"shot": "./dist/tools/Shot.js",
"long": "./dist/tools/Long.js",
"board": "./dist/tools/Board.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc && chmod +x dist/tools/*.js",
"prepare": "npm run build",
"test": "node test-import.ts",
"test:esm": "node --input-type=module test-import.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victortaelin/ai-scripts.git"
},
"keywords": [
"ai"
],
"author": "VictorTaelin",
"license": "MIT",
"bugs": {
"url": "https://github.com/victortaelin/ai-scripts/issues"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@google/genai": "^1.29.1",
"@openrouter/ai-sdk-provider": "^0.4.5",
"@portkey-ai/gateway": "^1.9.15",
"apify-client": "^2.12.2",
"commander": "^13.1.0",
"gateway": "^1.0.0",
"googleapis": "^148.0.0",
"gpt-tokenizer": "^2.9.0",
"groq-sdk": "^0.19.0",
"ignore": "^7.0.3",
"minimist": "^1.2.8",
"oauth-1.0a": "^2.2.6",
"openai": "^4.95.0",
"portkey-ai": "^1.8.0",
"typescript": "^5.8.3"
},
"homepage": "https://github.com/victortaelin/ai-scripts#readme",
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/minimist": "^1.2.5"
}
}