This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "dartjs",
"version": "1.2.0",
"description": "Very simple framework that provides discord.js v12 voice interface",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc && npm run build:esm",
"build:check": "tsc --noEmit --incremental false",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"bump": "npx npm-check-updates -u",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}",
"prepublishOnly": "rollup-type-bundler -e stream"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevAndromeda/dartjs.git"
},
"keywords": [
"dartjs",
"discord",
"voice",
"v12",
"v13",
"discord.js-v12-voice",
"discord.js-v13-voice",
"discord.js-v12-voice-v13",
"polyfill",
"discord-player"
],
"author": "DevAndromeda",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevAndromeda/dartjs/issues"
},
"homepage": "https://github.com/DevAndromeda/typescript-template#readme",
"devDependencies": {
"@discordjs/opus": "^0.7.0",
"@favware/rollup-type-bundler": "^1.0.3",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"discord.js": "^13.6.0",
"eslint": "^7.32.0",
"gen-esm-wrapper": "^1.1.2",
"husky": "^7.0.1",
"opusscript": "^0.0.8",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"tweetnacl": "^1.0.3",
"typescript": "^4.3.5",
"youtube-sr": "^4.1.13",
"ytdl-core": "^4.11.0"
},
"dependencies": {
"@discordjs/voice": "^0.8.0",
"prism-media": "^1.3.2"
}
}