-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 KB
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
{
"name": "@mbeato/contextscope",
"version": "0.3.0",
"description": "Local dashboard auditing Claude Code's per-turn token context (skills, agents, commands, CLAUDE.md, MEMORY.md, hooks, MCP) with toggle-based disable and session analytics.",
"type": "module",
"bin": {
"contextscope": "./bin/cli.js"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "next build && next start",
"lint": "eslint",
"refresh-prices": "node scripts/refresh-prices.mjs",
"prepublishOnly": "next build",
"release": "test -f .env.publish || (echo 'missing .env.publish — copy .env.publish.example and add your NPM_TOKEN' && exit 1) && set -a && . ./.env.publish && set +a && npm publish"
},
"files": [
"bin",
"lib/model-prices.json",
".next/standalone",
".next/static",
"public",
"plugin",
"README.md",
"LICENSE"
],
"keywords": [
"claude-code",
"claude",
"anthropic",
"token",
"context",
"audit",
"ccusage",
"skills",
"agents",
"mcp"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mbeato/contextscope.git"
},
"homepage": "https://github.com/mbeato/contextscope#readme",
"bugs": {
"url": "https://github.com/mbeato/contextscope/issues"
},
"engines": {
"node": ">=18.18"
},
"dependencies": {
"gray-matter": "^4.0.3",
"js-tiktoken": "^1.0.21",
"next": "16.2.6",
"open": "^11.0.0",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}