meter-ai 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meter-ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Intelligent CLI wrapper for Claude Code — pre-task cost estimation, live status bar, budget protection",
|
|
5
5
|
"bin": {
|
|
6
|
-
"meter": "
|
|
6
|
+
"meter": "dist/index.js"
|
|
7
7
|
},
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"type": "module",
|
|
10
|
-
"engines": {
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=20.0.0"
|
|
12
|
+
},
|
|
11
13
|
"scripts": {
|
|
12
14
|
"build": "tsc -p tsconfig.build.json && node -e \"const fs=require('fs');const f='dist/index.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!/usr/bin/env node')){fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c)}\"",
|
|
13
15
|
"dev": "tsx src/index.ts",
|
|
@@ -16,7 +18,13 @@
|
|
|
16
18
|
"typecheck": "tsc --noEmit",
|
|
17
19
|
"prepublishOnly": "npm run build && npm test"
|
|
18
20
|
},
|
|
19
|
-
"keywords": [
|
|
21
|
+
"keywords": [
|
|
22
|
+
"claude",
|
|
23
|
+
"ai",
|
|
24
|
+
"cost",
|
|
25
|
+
"cli",
|
|
26
|
+
"agent"
|
|
27
|
+
],
|
|
20
28
|
"license": "MIT",
|
|
21
29
|
"dependencies": {
|
|
22
30
|
"@anthropic-ai/sdk": "^0.39.0",
|