-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "happypandax-client",
"version": "3.5.0",
"description": "A javascript client library for communicating with HappyPanda X servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "concurrently -i --default-input-target 1 \"python test/timeout.py\" \"jest\"",
"build": "tsc",
"docs": "jsdoc2md --separators --configure ./jsdoc2md.json --heading-depth 3 ./src/index.ts",
"prepare": "yarn build"
},
"repository": "git+https://github.com/happypandax/js-client.git",
"keywords": [
"hpx",
"happypandax",
"client",
"socket",
"server",
"manga",
"comics",
"doujinshi",
"doujin",
"happypanda"
],
"author": "Twiddly",
"license": "MIT",
"bugs": {
"url": "https://github.com/happypandax/js-client/issues"
},
"homepage": "https://github.com/happypandax/js-client#readme",
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^26.0.24",
"@types/node": "^18.13.0",
"concurrently": "^7.6.0",
"jest": "^27.0.6",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}