dsh-ui-cost-meter 0.0.0 → 1.0.0

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.
Files changed (2) hide show
  1. package/LICENSE +1 -1
  2. package/package.json +104 -103
package/LICENSE CHANGED
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,105 +1,106 @@
1
1
  {
2
- "name": "dsh-ui-cost-meter",
3
- "version": "0.0.0",
4
- "description": "DeepSeek Harness Web GUI plugin: real-time spend for the current session, priced from per-model token rates and shown as a pill under the composer",
5
- "homepage": "https://github.com/yuu1111/dsh-ui-cost-meter#readme",
6
- "bugs": {
7
- "url": "https://github.com/yuu1111/dsh-ui-cost-meter/issues"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/yuu1111/dsh-ui-cost-meter.git"
12
- },
13
- "keywords": [
14
- "cordis",
15
- "deepseek-harness",
16
- "dsh",
17
- "dsh-plugin",
18
- "cost",
19
- "spend",
20
- "price",
21
- "billing",
22
- "token",
23
- "web-ui"
24
- ],
25
- "license": "MIT",
26
- "publishConfig": {
27
- "access": "public",
28
- "registry": "https://registry.npmjs.org/"
29
- },
30
- "author": {
31
- "name": "yuu1111"
32
- },
33
- "type": "module",
34
- "main": "lib/index.js",
35
- "exports": {
36
- ".": "./lib/index.js",
37
- "./client": "./lib/client.js"
38
- },
39
- "files": [
40
- "lib",
41
- "cordis.patch.yml",
42
- "README.md",
43
- "README.ja.md",
44
- "LICENSE"
45
- ],
46
- "engines": {
47
- "node": ">=20"
48
- },
49
- "packageManager": "bun@1.4.2",
50
- "scripts": {
51
- "build": "bun build.ts",
52
- "check": "tsc -p tsconfig.json",
53
- "test": "bun run build && bun test",
54
- "lint": "biome check .",
55
- "format": "biome check --write --unsafe ."
56
- },
57
- "dsh": {
58
- "bundle": {
59
- "patch": "./cordis.patch.yml"
60
- },
61
- "client": {
62
- "platform": "web",
63
- "inject": [
64
- "@deepseek-ai/dsh-client-ui-conversation"
65
- ]
66
- }
67
- },
68
- "peerDependencies": {
69
- "@deepseek-ai/cordis": "^4.0.2",
70
- "@deepseek-ai/dsh-client-ui-conversation": "^0.1.5-rc.2",
71
- "@deepseek-ai/dsh-session-projection": "^0.1.5-rc.2",
72
- "@deepseek-ai/schemastery": "^3.18.2",
73
- "zod": "^4.6.2"
74
- },
75
- "peerDependenciesMeta": {
76
- "@deepseek-ai/dsh-client-ui-conversation": {
77
- "optional": true
78
- }
79
- },
80
- "devDependencies": {
81
- "@deepseek-ai/cordis": "^4.0.2",
82
- "@deepseek-ai/dsh-client-ui-conversation": "^0.1.5-rc.2",
83
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-rc.2",
84
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.5-rc.2",
85
- "@deepseek-ai/dsh-llm": "^0.1.5-rc.2",
86
- "@deepseek-ai/dsh-session": "^0.1.5-rc.2",
87
- "@deepseek-ai/dsh-session-projection": "^0.1.5-rc.2",
88
- "@deepseek-ai/schemastery": "^3.18.2",
89
- "@types/bun": "^1.4.2",
90
- "@types/react": "~19.3.0",
91
- "react": "^19.3.0",
92
- "typescript": "^7.0.2",
93
- "zod": "^4.6.2",
94
- "@deepseek-ai/dsh-client-ui-session": "^0.1.5-rc.2",
95
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-rc.2",
96
- "@deepseek-ai/dsh-llm-retry": "^0.1.5-rc.2",
97
- "react-dom": "^19.3.0",
98
- "@types/react-dom": "~19.3.0",
99
- "@biomejs/biome": "^2.5.13",
100
- "@yuu1111/biome-config": "^2.2.0",
101
- "@yuu1111/tsconfig": "^1.0.7",
102
- "@yuu1111/knip-config": "^1.0.7",
103
- "knip": "^6.35.1"
104
- }
2
+ "name": "dsh-ui-cost-meter",
3
+ "version": "1.0.0",
4
+ "description": "DeepSeek Harness Web GUI plugin: real-time spend for the current session, priced from per-model token rates and shown as a pill under the composer",
5
+ "homepage": "https://github.com/yuu1111/dsh-ui-cost-meter#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/yuu1111/dsh-ui-cost-meter/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/yuu1111/dsh-ui-cost-meter.git"
12
+ },
13
+ "keywords": [
14
+ "cordis",
15
+ "deepseek-harness",
16
+ "dsh",
17
+ "dsh-plugin",
18
+ "cost",
19
+ "spend",
20
+ "price",
21
+ "billing",
22
+ "token",
23
+ "web-ui"
24
+ ],
25
+ "license": "MIT",
26
+ "publishConfig": {
27
+ "access": "public",
28
+ "registry": "https://registry.npmjs.org/"
29
+ },
30
+ "author": {
31
+ "name": "yuu1111"
32
+ },
33
+ "type": "module",
34
+ "main": "lib/index.js",
35
+ "exports": {
36
+ ".": "./lib/index.js",
37
+ "./client": "./lib/client.js"
38
+ },
39
+ "files": [
40
+ "lib",
41
+ "cordis.patch.yml",
42
+ "README.md",
43
+ "README.ja.md",
44
+ "LICENSE"
45
+ ],
46
+ "engines": {
47
+ "node": ">=20"
48
+ },
49
+ "packageManager": "bun@1.4.2",
50
+ "scripts": {
51
+ "build": "bun build.ts",
52
+ "prepack": "bun run build",
53
+ "check": "tsc -p tsconfig.json",
54
+ "test": "bun run build && bun test",
55
+ "lint": "biome check .",
56
+ "format": "biome check --write --unsafe ."
57
+ },
58
+ "dsh": {
59
+ "bundle": {
60
+ "patch": "./cordis.patch.yml"
61
+ },
62
+ "client": {
63
+ "platform": "web",
64
+ "inject": [
65
+ "@deepseek-ai/dsh-client-ui-conversation"
66
+ ]
67
+ }
68
+ },
69
+ "peerDependencies": {
70
+ "@deepseek-ai/cordis": "^4.0.2",
71
+ "@deepseek-ai/dsh-client-ui-conversation": "^0.1.5-rc.2",
72
+ "@deepseek-ai/dsh-session-projection": "^0.1.5-rc.2",
73
+ "@deepseek-ai/schemastery": "^3.18.2",
74
+ "zod": "^4.6.2"
75
+ },
76
+ "peerDependenciesMeta": {
77
+ "@deepseek-ai/dsh-client-ui-conversation": {
78
+ "optional": true
79
+ }
80
+ },
81
+ "devDependencies": {
82
+ "@deepseek-ai/cordis": "^4.0.2",
83
+ "@deepseek-ai/dsh-client-ui-conversation": "^0.1.5-rc.2",
84
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-rc.2",
85
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.5-rc.2",
86
+ "@deepseek-ai/dsh-llm": "^0.1.5-rc.2",
87
+ "@deepseek-ai/dsh-session": "^0.1.5-rc.2",
88
+ "@deepseek-ai/dsh-session-projection": "^0.1.5-rc.2",
89
+ "@deepseek-ai/schemastery": "^3.18.2",
90
+ "@types/bun": "^1.4.2",
91
+ "@types/react": "~19.3.0",
92
+ "react": "^19.3.0",
93
+ "typescript": "^7.0.2",
94
+ "zod": "^4.6.2",
95
+ "@deepseek-ai/dsh-client-ui-session": "^0.1.5-rc.2",
96
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-rc.2",
97
+ "@deepseek-ai/dsh-llm-retry": "^0.1.5-rc.2",
98
+ "react-dom": "^19.3.0",
99
+ "@types/react-dom": "~19.3.0",
100
+ "@biomejs/biome": "^2.5.13",
101
+ "@yuu1111/biome-config": "^2.2.0",
102
+ "@yuu1111/tsconfig": "^1.0.7",
103
+ "@yuu1111/knip-config": "^1.0.7",
104
+ "knip": "^6.35.1"
105
+ }
105
106
  }