-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "chiro.js",
"version": "1.0.9",
"description": "A easy to use client for Nexus",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"author": "Rohan Kumar",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"@discordjs/collection": "^0.2.1",
"node-fetch": "^2.6.1",
"ws": "^7.5.3"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@favware/rollup-type-bundler": "^1.0.3",
"@types/node": "^16.4.10",
"@types/node-fetch": "^2.5.12",
"@types/ws": "^7.4.7",
"discord.js": "^12.5.3",
"discord.js-docgen": "discordjs/docgen#ts-patch",
"gen-esm-wrapper": "^1.1.2",
"husky": "^7.0.1",
"jsdoc-babel": "^0.5.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"keywords": [
"nexus",
"discord",
"music",
"bot",
"discord.js",
"eris",
"chiro",
"chiro.js"
],
"repository": "https://github.com/DevSnowflake/chiro.js",
"bugs": "https://github.com/DevSnowflake/chiro.js/issues",
"scripts": {
"docs": "docgen --jsdoc jsdoc.json --verbose --source src/*.ts src/**/*.ts --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --jsdoc jsdoc.json --verbose --source src/*.ts src/**/*.ts --custom docs/index.yml",
"build": "rimraf dist && tsc && npm run build:esm",
"build:check": "tsc --noEmit --incremental false",
"build:bundle": "rollup-type-bundler -e stream",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build:bundle"
}
}