-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.99 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
73
74
75
76
77
{
"name": "@alexanderfortin/pi-zai-usage",
"version": "0.4.0",
"description": "Pi extension for monitoring Z.ai API token usage quota",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun run typecheck && bun run build:tsc",
"build:tsc": "tsc",
"typecheck": "tsc --noEmit --project tsconfig.test.json",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"format": "biome format --write src/",
"check": "bun run typecheck && bun run lint",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run"
},
"dependencies": {
"@alexanderfortin/pi-usage-lib": "^0.2.5",
"temporal-polyfill": "^1.0.4"
},
"devDependencies": {
"@alexanderfortin/semantic-release-keep-a-changelog": "^0.4.13",
"@biomejs/biome": "^2.5.10",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@types/bun": "^1.4.0",
"semantic-release": "^25.0.9",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "^0.84.3",
"@earendil-works/pi-tui": "^0.84.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"pi-package",
"pi-extension",
"zai",
"Z.ai",
"usage-monitoring",
"api-quota"
],
"pi": {
"extensions": [
"./dist/index.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/shaftoe/pi-zai-usage"
},
"author": "Alexander Fortin",
"license": "MIT"
}