-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"name": "discordly.city",
"version": "1.0.8",
"description": "Discordly City officially NPM Package to make it easier to develop Discordly City API",
"homepage": "https://github.com/DiscordlyCity/DiscordlyCity-SDK#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DiscordlyCity/DiscordlyCity-SDK.git"
},
"bugs": {
"url": "https://github.com/DiscordlyCity/DiscordlyCity-SDK/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"license": "MIT",
"scripts": {
"build": "tsc --project ./tsconfig.json && npm run build:esm",
"build:check": "tsc --project ./tsconfig.json --noEmit --incremental false",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"lint": "eslint src --ext .ts src/",
"lint:fix": "eslint --fix src/ --ext .ts src/",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}"
},
"keywords": [
"npm",
"api",
"node.js",
"node",
"nodejs",
"node js",
"discord",
"city",
"discordly",
"discordly city",
"discord city"
],
"author": {
"name": "im-parsa",
"email": "[email protected]",
"url": "https://parsa-firoozi.ir/"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "8.19.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.4",
"eslint-plugin-promise": "6.0.0",
"gen-esm-wrapper": "^1.1.3",
"prettier": "^1.19.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"axios": "^0.27.2",
"discord.js": "^13.8.1"
}
}