-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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
{
"name": "aitum.js",
"version": "2.0.3",
"keywords": [
"aitum",
"streaming",
"twitch"
],
"main": "lib/index.js",
"description": "API Wrapper library for Aitum's Public API",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"repository": "https://github.com/Aitum/aitum.js.git",
"author": "David Marsh <david@aitum.tv>",
"contributors": [
{
"name": "Jayden Bailey",
"url": "https://github.com/jayktaylor"
},
{
"name": "Nuro",
"url": "https://github.com/NuroDev"
}
],
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^18.11.9",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"@types/bonjour": "^3.5.10",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.3.0"
},
"dependencies": {
"chalk": "4.1.2",
"@koa/cors": "^4.0.0",
"axios": "^1.2.0",
"bonjour": "^3.5.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0"
},
"scripts": {
"build": "tsup",
"clean": "rimraf node_modules dist",
"dev": "tsup --watch",
"format": "prettier --write \"**/*.{js,json,ts}\""
},
"prettier": {
"singleQuote": true
}
}