This repository was archived by the owner on May 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.41 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.41 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
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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@zeepkist/gtr-api",
"version": "1.0.0",
"license": "MIT",
"description": "Fully typed API client for the Zeepkist GTR API",
"author": "James Harris <wopian@wopian.me>",
"homepage": "https://github.com/zeepkist/gtr-client#readme",
"repository": "https://github.com/zeepkist/gtr-client",
"bugs": {
"url": "https://github.com/zeepkist/gtr-client/issues"
},
"funding": "https://github.com/sponsors/wopian",
"type": "module",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --fix --ignore-path .gitignore",
"lint:ci": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"test": "ava",
"coverage": "c8 ava",
"document": "typedoc"
},
"dependencies": {
"ky": "~1.2.0",
"pako": "~2.1.0"
},
"devDependencies": {
"@ava/typescript": "~4.1.0",
"@rushstack/eslint-patch": "~1.10.0",
"@semantic-release/changelog": "~6.0.2",
"@semantic-release/commit-analyzer": "~11.1.0",
"@semantic-release/github": "~9.2.0",
"@semantic-release/npm": "~11.0.0",
"@semantic-release/release-notes-generator": "~12.1.0",
"@types/node": "~20.12.0",
"@types/pako": "~2.0.0",
"@typescript-eslint/eslint-plugin": "~6.21.0",
"@typescript-eslint/parser": "~6.21.0",
"ava": "~6.1.0",
"c8": "~9.1.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-prettier": "~5.1.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-unicorn": "~50.0.0",
"prettier": "~3.2.0",
"semantic-release": "~22.0.0",
"tsx": "~4.8.0",
"typedoc": "~0.25.0",
"typescript": "~5.4.0"
},
"dependenciesMeta": {
"esbuild": {
"built": true
}
},
"ava": {
"utilizeParallelBuilds": true,
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "dist/src/"
}
}
},
"c8": {
"all": true,
"skipFull": true,
"src": [
"dist"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
".pnp.cjs",
".pnp.loader.mjs",
"dist/**/*.d.ts",
"dist/**/*.spec.js"
]
},
"renovate": {
"extends": [
"local>wopian/renovate-config"
]
},
"packageManager": "yarn@3.8.2",
"keywords": [
"gtr",
"zeepkist",
"api",
"client",
"typescript"
]
}