-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "copilot-usage",
"version": "5.2.0",
"description": "A GitHub Action to get copilot usage",
"private": false,
"scripts": {
"build": "tsc && ncc build src/index.ts -o dist --source-map --license LICENSE",
"test": "vitest run",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"actions",
"node",
"github",
"typescript"
],
"author": "Austen Stone",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/austenstone/copilot-usage.git"
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.3.2",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/action": "^8.0.2",
"@octokit/rest": "^22.0.0",
"json-2-csv": "^5.5.9",
"jstoxml": "^7.0.1",
"octokit": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.5.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"ts-jest": "^29.3.4",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.0"
}
}