forked from spacebarchat/spacebar.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.79 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
82
83
84
85
86
87
88
89
90
{
"name": "fosscord.js",
"version": "13.1.1-dev",
"description": "A powerful library for interacting with the Discord API",
"main": "./dist/index.js",
"types": "./typings/index.d.ts",
"unpkg": "./webpack/fosscord.min.js",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"scripts": {
"test": "npm run lint && npm run docs:test && npm run lint:typings",
"test:typescript": "tsc",
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --source src --custom docs/index.yml",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:typings": "tslint typings/index.d.ts",
"prettier": "prettier --write src/**/*.js typings/**/*.ts",
"prepublishOnly": "npm run test && gen-esm-wrapper ./src/index.js ./src/index.mjs",
"prepare": "is-ci || husky install",
"build:browser": "webpack",
"build": "tsc -b --explainFiles --extendedDiagnostics",
"sync-fork": "git fetch upstream && git merge upstream/master",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fosscord/fosscord.js.git"
},
"keywords": [
"discord",
"fosscord",
"api",
"bot",
"client",
"node"
],
"author": "Flam3rboy fosscord.js & discord.js: Amish Shah <amish@shah.gg>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fosscord/fosscord.js/issues"
},
"homepage": "https://github.com/fosscord/fosscord.js#readme",
"dependencies": {
"@discordjs/builders": "^0.4.0",
"@discordjs/collection": "^0.2.1",
"@discordjs/form-data": "^3.0.1",
"@sapphire/async-queue": "^1.1.4",
"@types/ws": "^7.4.7",
"discord-api-types": "^0.22.0",
"fosscord.js-builders": "git+https://github.com/fosscord/fosscord.js-builders.git",
"node-fetch": "^2.6.1",
"text-decoding": "^1.0.0",
"ws": "^7.5.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@discordjs/docgen": "^0.10.0",
"@discordjs/voice": "^0.3.0",
"@types/node": "^16.4.12",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"dtslint": "^4.1.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"gen-esm-wrapper": "^1.1.2",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"json-filter-loader": "^1.0.0",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"terser-webpack-plugin": "^4.2.3",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"directories": {
"doc": "docs"
}
}