-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1005 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1005 Bytes
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
{
"name": "github-usage-report",
"version": "4.0.0",
"description": "Parse github usage report",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./node": {
"types": "./dist/node.d.ts",
"default": "./dist/node.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts"
},
"keywords": [
"node",
"typescript"
],
"author": "Austen Stone",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/austenstone/github-usage-report.git"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.0"
}
}