-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 899 Bytes
/
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
{
"name": "hanime.tv",
"version": "1.2.0",
"description": "package made to use [hanime.tv](https://hanime.tv) api and download videos from it.",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"prepublish": "npm run compile && gen-esm-wrapper dist/index.js dist/index.mjs && npm run docs",
"docs": "typedoc src/index.ts"
},
"author": "ruben40000",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4"
},
"repository": {
"url": "https://github.com/Rubenennj/hanime.tv"
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^16.9.1",
"express": "^4.17.1",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^4.4.0",
"gen-esm-wrapper": "^1.1.2",
"prism-media": "^1.3.2",
"speaker": "^0.5.3",
"typedoc": "^0.22.3",
"typescript": "^4.4.0-beta"
}
}