-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 832 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 832 Bytes
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
{
"name": "tc",
"version": "1.0.0",
"packageManager": "pnpm@10.7.1",
"description": "A lightweight CLI tool for counting tokens in text files or stdin using Anthropic's Claude models. Inspired by the Unix wc command, but for tokens.",
"author": "BroJor",
"license": "ISC",
"keywords": [
"cli",
"token",
"count",
"anthropic",
"claude"
],
"main": "dist/index.js",
"bin": {
"tc": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"commander": "^13.1.0",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/node": "^22.14.1",
"eslint": "^9.24.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}