This repository was archived by the owner on Jan 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "yay.js",
"version": "0.0.27",
"description": "Simple and intuitive, yet full featured API wrapper for https://yay.space written in TypeScript/JavaScript.",
"type": "commonjs",
"source": "./src/index.ts",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"default": "./build/index.js"
}
},
"scripts": {
"build": "tsc && rimraf ./build/package.json ./build/src",
"test": "jest",
"docs": "typedoc",
"publish": "yarn build && npm publish --access public"
},
"repository": "https://github.com/ekkx/yay.js",
"keywords": [
"yay",
"api",
"bot",
"nanameue"
],
"author": "ekkx",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekkx/yay.js/issues"
},
"homepage": "https://github.com/ekkx/yay.js#readme",
"files": [
"build"
],
"dependencies": {
"axios": "^1.5.0",
"colors": "^1.4.0",
"jsonwebtoken": "^9.0.2",
"uuid": "^9.0.1",
"winston": "^3.10.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.6.2",
"@types/uuid": "^9.0.4",
"@types/ws": "^8.5.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.2",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.2.2"
},
"volta": {
"node": "22.2.0"
}
}