-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.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
{
"name": "cohost-api",
"version": "0.0.9",
"description": "An unofficial tRPC-based wrapper API for Cohost.org",
"main": "index.js",
"scripts": {
"test": "tsc && node tester.js",
"docs": "rimraf temp-docs && typedoc index.ts --commentStyle block --plugin typedoc-plugin-markdown --theme markdown --out temp-docs && concat-md --toc --decrease-title-levels --ignore README.md,modules.md --dir-name-as-title temp-docs > reference.md && rimraf temp-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApexDevelopment/cohost-api.git"
},
"keywords": [
"api"
],
"type": "module",
"author": "Apex",
"license": "ISC",
"bugs": {
"url": "https://github.com/ApexDevelopment/cohost-api/issues"
},
"homepage": "https://github.com/ApexDevelopment/cohost-api#readme",
"devDependencies": {
"@types/node": "^20.11.20",
"concat-md": "^0.5.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typedoc": "^0.25.9",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@trpc/client": "^11.0.0-next-beta.294",
"image-size": "^1.1.1",
"mime": "^4.0.1",
"zod": "^3.22.4"
}
}