-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.17 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
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
78
79
80
81
82
83
84
85
86
87
{
"name": "@bonyuta0204/github-exporter",
"type": "module",
"version": "0.0.7",
"description": "GitHub Exporter written in typescript",
"main": "./dist/index.cjs",
"scripts": {
"prepublishOnly": "yarn run build",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "unbuild",
"stub": "unbuild --stub",
"compile": "graphql-codegen",
"watch": "graphql-codegen -w",
"test": "vitest",
"publish": "bumpp && npm publish --access=public",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"prettier --write **/*.ts",
"eslint . --fix"
]
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"bin": {
"ghex": "bin/index.mjs"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bonyuta0204/github-exporter.git"
},
"keywords": [
"GitHub"
],
"author": "Yuta Nakamura",
"license": "MIT",
"bugs": {
"url": "https://github.com/bonyuta0204/github-exporter/issues"
},
"homepage": "https://github.com/bonyuta0204/github-exporter#readme",
"volta": {
"node": "20.10.0",
"yarn": "1.22.21"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.3.0",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitest/coverage-v8": "^1.0.2",
"@vitest/ui": "^1.0.2",
"bumpp": "^9.2.0",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vitest": "1.0.0-beta.6"
},
"dependencies": {
"@apollo/client": "^3.8.8",
"csv-writer": "^1.6.0",
"google-spreadsheet": "^4.1.1",
"graphql": "^16.8.1",
"minimist": "^1.2.8",
"react": "^18.2.0"
}
}