Skip to content

Commit 4cb1941

Browse files
efoutsclaude
andcommitted
chore: streamline package.json for npm publication
Remove unnecessary metadata and scripts for cleaner npm package: - Remove docs/claude-code-status-line.md from files array - Remove unused npm lifecycle scripts (prepack, version, postversion, prepare) - Remove cli keyword and funding/volta metadata - Simplify configuration for production readiness 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent b53c7b9 commit 4cb1941

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

package.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@thisdot/claude-code-context-status-line",
2+
"name": "@this-dot/claude-code-context-status-line",
33
"version": "0.1.0",
44
"description": "CLI tool to restore context window visibility for AWS Bedrock users in Claude Code by displaying real-time token usage in the status line",
55
"type": "module",
@@ -10,8 +10,7 @@
1010
"files": [
1111
"src/",
1212
"README.md",
13-
"LICENSE",
14-
"docs/claude-code-status-line.md"
13+
"LICENSE"
1514
],
1615
"scripts": {
1716
"test": "node --test tests/context-status.test.js",
@@ -21,18 +20,13 @@
2120
"lint": "eslint . --ext .js",
2221
"lint:fix": "eslint . --ext .js --fix",
2322
"prepublishOnly": "pnpm run lint && pnpm run test",
24-
"prepack": "pnpm run lint && pnpm run test",
25-
"version": "pnpm run test:all && git add -A src",
26-
"postversion": "git push && git push --tags",
27-
"prepare": "node -e \"try{require('./src/context-status.js')}catch(e){process.exit(1)}\"",
2823
"check-types": "node --check src/context-status.js"
2924
},
3025
"keywords": [
3126
"claude-code",
3227
"aws-bedrock",
3328
"context",
3429
"status-line",
35-
"cli",
3630
"anthropic",
3731
"token-usage",
3832
"developer-tools"
@@ -62,13 +56,5 @@
6256
"access": "public",
6357
"registry": "https://registry.npmjs.org/",
6458
"provenance": true
65-
},
66-
"funding": {
67-
"type": "individual",
68-
"url": "https://github.com/sponsors/thisdot"
69-
},
70-
"volta": {
71-
"node": "18.0.0",
72-
"pnpm": "8.0.0"
7359
}
7460
}

0 commit comments

Comments
 (0)