-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "@ohcnetwork/leaderboard-github-plugin",
"version": "0.2.0",
"private": false,
"description": "Leaderboard github plugin",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc && esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:@libsql/client",
"test": "vitest run",
"test:watch": "vitest",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"keywords": [
"leaderboard",
"plugin"
],
"packageManager": "pnpm@10.20.0",
"dependencies": {
"@octokit/core": "^7.0.6",
"@octokit/plugin-paginate-graphql": "^6.0.0",
"@octokit/plugin-paginate-rest": "^14.0.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@ohcnetwork/leaderboard-api": "^0.2.0",
"date-fns": "^4.1.0",
"octokit": "^5.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^20.19.39",
"esbuild": "^0.27.7",
"eslint": "^9.39.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"author": "Open Healthcare Network",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ohcnetwork/leaderboard-github-plugin.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
}
}