-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "@freitas-labs/github-graphql-query-user-created-assigned-issues",
"version": "0.0.0",
"description": "Typescript App that uses GitHub GraphQL API to query user created/assigned issues",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
"start": "swc src/* -d dist && node dist/index.js",
"test": "jest",
"docs": "typedoc",
"docs:publish": "typedoc && gh-pagez -d docs -t true",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/freitas-labs/github-graphql-query-user-created-assigned-issues.git"
},
"keywords": [
"typescript",
"prettier",
"eslint",
"jest",
"hot",
"git",
"hooks",
"starter"
],
"author": "freitas-labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/freitas-labs/github-graphql-query-user-created-assigned-issues/issues"
},
"homepage": "https://github.com/freitas-labs/github-graphql-query-user-created-assigned-issues#readme",
"devDependencies": {
"@freitzzz/gh-pagez": "^5.0.1",
"@jest/globals": "^29.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.51",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@octokit/graphql": "^7.0.2",
"dotenv": "^16.3.1"
}
}