-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 943 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 943 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
{
"name": "offtoco",
"version": "0.1.0",
"description": "Offline zero-knowledge token counter (GPT, Claude, Gemini) + SHA-256",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/PacifAIst/Offtoco",
"repository": {
"type": "git",
"url": "https://github.com/PacifAIst/Offtoco.git"
},
"type": "module",
"private": true,
"scripts": {
"postinstall": "node scripts/gen-claude-vocab.js",
"smoke": "node core/smoke-test.js",
"web:dev": "vite",
"web:build": "vite build",
"cli:run": "node cli/offtoco.js",
"cli:build": "bash cli/build.sh",
"desktop:start": "cd desktop && npm start",
"desktop:build": "cd desktop && npm run build"
},
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"@lenml/tokenizer-gemini": "^3.7.2",
"js-tiktoken": "^1.0.21"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.19.0",
"esbuild": "^0.28.0",
"vite": "^5.4.0"
}
}