-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "destry-cli",
"version": "1.0.4",
"description": "An advanced discord token generator",
"main": "./dist/index.js",
"scripts": {
"start": "node dist",
"dev": "yarn build && yarn start",
"lint": "eslint src --ext .ts,.json",
"lint:fix": "yarn lint --fix",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CA1R7/destry-cli.git"
},
"keywords": [
"discord",
"discord-token",
"token-generator",
"discord-token-grabber",
"discord-checker"
],
"author": "cairbyte71",
"private": true,
"license": "Apache license 2.0",
"bugs": {
"url": "https://github.com/CA1R7/destry-cli/issues"
},
"homepage": "https://github.com/CA1R7/destry-cli#readme",
"dependencies": {
"inquirer": "^8.1.2",
"request": "^2.88.2",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@types/inquirer": "^8.1.1",
"@types/node": "^16.9.1",
"@types/request": "^2.48.7",
"@types/unzipper": "^0.10.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.0",
"typescript": "^4.4.3"
}
}