-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.13 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
98
99
100
101
102
{
"name": "cody-architect",
"displayName": "Cody Architect",
"description": "Cody Architect - Enhance Cody with additional features",
"publisher": "PriNova",
"icon": "resources/ca.png",
"license": "MIT",
"homepage": "https://github.com/PriNova/codysearch",
"repository": {
"type": "git",
"url": "https://github.com/PriNova/codysearch"
},
"version": "0.0.20",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"AI",
"Chat",
"Machine Learning"
],
"activationEvents": [
"onStartupFinished",
"onStartup"
],
"contributes": {
"configuration": {
"title": "Cody Architect",
"properties": {
"codyArchitect.jinaApiKey": {
"type": "string",
"default": "",
"description": "API key for Jina AI services"
}
}
},
"permissions": [
{
"fileSystem": [
"write"
]
}
],
"commands": [
{
"command": "cody-architect.websearch",
"title": "Cody-Architect: Search the web"
},
{
"command": "cody-architect.pdfread",
"title": "Cody-Architect: Read PDF"
},
{
"command": "cody-architect.setJinaApiKey",
"title": "Cody-Architect: Set Jina AI API Key"
},
{
"command": "cody-architect.selectExternalFile",
"title": "Cody-Architect: Select External File for Mention"
}
]
},
"main": "./dist/extension.js",
"scripts": {
"vscode:package": "npm run package && pnpm vsce package -o dist/cody-architect-${npm_package_version}.vsix",
"vscode:prepublish": "npm run compile",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"lint": "eslint src --ext ts",
"fix": "eslint src --ext ts --fix",
"check-types": "tsc --noEmit",
"package": "npm run check-types && npm run lint && node esbuild.js --production"
},
"devDependencies": {
"@types/node": "^20.5.9",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"@typescript-eslint/parser": "^7.14.0",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.2"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@openctx/client": "^0.0.19",
"@openctx/protocol": "^0.0.15",
"@openctx/provider": "^0.0.14",
"js-tiktoken": "^1.0.12",
"tmp": "^0.2.3"
}
}