-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.31 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "holodex.js",
"description": "A Javascript library for the Holodex API.",
"version": "2.0.5",
"author": "HolodexNet",
"scripts": {
"build": "tsup -d dist src/index.ts src/cli.ts --format esm,cjs --target node14 --dts",
"dev": "npm run build -- --watch",
"docs": "typedoc --out docs src/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prebuild": "shx rm -rf dist",
"prepare": "husky install",
"publish:major": "npm version major && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:patch": "npm version patch && npm publish --access public",
"publish:prepare": "npm run format && npm run lint && npm run test && npm run docs && npm run build",
"test": "jest",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"holodex": "./dist/cli.js"
},
"files": [
"dist"
],
"dependencies": {
"axios": "^0.21.4",
"axios-retry": "^3.1.9",
"chalk": "^4.1.2",
"conf": "^10.0.3",
"terminal-link": "^3.0.0",
"yargs": "^17.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.2",
"jest": "^27.2.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"shx": "^0.3.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsup": "^5.1.0",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"homepage": "https://holodexnet.github.io/holodex.js/",
"repository": {
"type": "git",
"url": "git+https://github.com/HolodexNet/holodex.js.git"
},
"bugs": {
"url": "https://github.com/HolodexNet/holodex.js/issues"
},
"license": "MIT",
"keywords": [
"api",
"data",
"holodex",
"hololive",
"vtubers"
],
"engines": {
"node": ">=14"
}
}