generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.15 KB
/
package.json
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
{
"name": "copilot-usage",
"version": "4.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": "jest",
"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.1.11",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/action": "^7.0.0",
"json-2-csv": "^5.5.6",
"jstoxml": "^5.0.2",
"octokit": "^4.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@vercel/ncc": "^0.38.2",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}