-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.88 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
{
"name": "gpt-token-counter-live",
"displayName": "Live LLM Token Counter",
"description": "Live Token Counter for Language Models",
"version": "1.2.2",
"publisher": "bedirt",
"author": {
"name": "BedirT"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:gpt-token-counter-live.countTokens",
"onCommand:gpt-token-counter-live.changeModel",
"onLanguage:plaintext",
"onLanguage:javascript",
"onLanguage:typescript"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#00c864",
"theme": "dark"
},
"engines": {
"vscode": "^1.78.0"
},
"main": "./src/extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.78.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^5.0.4"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/microsoft/vscode-wordcount/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/BedirT/LLM-Token-Counter-VSCode"
},
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"tiktoken": "^1.0.15"
},
"contributes": {
"commands": [
{
"command": "gpt-token-counter-live.countTokens",
"title": "Count Tokens"
},
{
"command": "gpt-token-counter-live.changeModel",
"title": "Change Model"
}
]
},
"keywords": [
"GPT",
"OpenAI",
"Claude",
"Anthropic",
"Token",
"Counter",
"LLM",
"Language Model"
],
"homepage": "https://github.com/BedirT/LLM-Token-Counter-VSCode/blob/main/README.md"
}