-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.5 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
{
"name": "snapshots-for-ai",
"displayName": "Snapshots for AI",
"description": "Create markdown snapshots of your code for AI interactions",
"version": "8.1.37",
"publisher": "GBTI",
"icon": "resources/camera.png",
"homepage": "https://gbti.network/products/vscode-snapshots-for-ai/",
"repository": {
"type": "git",
"url": "https://github.com/gbti-network/vscode-snapshots-for-ai"
},
"bugs": {
"url": "https://github.com/gbti-network/vscode-snapshots-for-ai/issues"
},
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"qna": "https://github.com/gbti-network/vscode-snapshots-for-ai/discussions",
"preview": false,
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Snippets",
"Formatters",
"Debuggers",
"Machine Learning",
"AI",
"Chat"
],
"keywords": [
"snapshot",
"markdown",
"ai",
"gpt",
"claude",
"grok",
"llama",
"llm",
"rag",
"context-retrieval"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "snapshots-for-ai.createSnapshot",
"title": "Create Snapshot",
"icon": {
"light": "resources/light/camera.png",
"dark": "resources/dark/camera.png"
}
}
],
"menus": {
"editor/title": [
{
"command": "snapshots-for-ai.createSnapshot",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"deploy": "ts-node -P scripts/tsconfig.json scripts/deploy.ts patch",
"deploy:patch": "ts-node -P scripts/tsconfig.json scripts/deploy.ts patch",
"deploy:minor": "ts-node -P scripts/tsconfig.json scripts/deploy.ts minor",
"deploy:major": "ts-node -P scripts/tsconfig.json scripts/deploy.ts major"
},
"devDependencies": {
"@octokit/rest": "^21.0.2",
"@types/node": "20.10.4",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"dotenv": "^16.4.7",
"eslint": "^8.55.0",
"node-fetch": "^2.7.0",
"ovsx": "^0.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"license": "GPL-3.0"
}