This repository was archived by the owner on May 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 KB
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
{
"private": true,
"name": "@redguy12/20-questions-bot",
"version": "1.1.2",
"description": "For the Scratch Addons server",
"license": "MIT",
"author": "RedGuy12",
"homepage": "https://github.com/RedGuy12/20-questions-bot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RedGuy12/20-questions-bot.git"
},
"bugs": {
"url": "https://github.com/RedGuy12/20-questions-bot/issues"
},
"type": "module",
"main": "src/index.js",
"scripts": {
"ci": "npm i && npm run format && npm run types && npm run lint",
"dev": "nodemon -- . --harmony --trace-warnings",
"format": "prettier --write \"**\" --ignore-unknown && prettier-package-json --write",
"lint": "cd \"node_modules/@redguy12/eslint-config/\" && npx eslint ../../../ --resolve-plugins-relative-to . --fix --cache --cache-location ../../../.eslintcache && cd \"../../../\"",
"start": "node . --harmony --trace-warnings",
"types": "tsc -p jsconfig.json"
},
"dependencies": {
"@discordjs/builders": "0.12.0",
"discord.js": "13.6.0",
"dotenv": "16.0.0",
"fuse.js": "^6.5.3",
"node-fetch": "3.2.3"
},
"devDependencies": {
"@redguy12/eslint-config": "1.0.2",
"@redguy12/prettier-config": "1.1.1",
"@rushstack/eslint-patch": "1.1.0",
"@types/chrome": "^0.0.180",
"@types/eslint": "8.4.1",
"@types/node": "17.0.21",
"eslint": "8.10.0",
"nodemon": "2.0.15",
"openode": "2.1.6",
"prettier": "2.5.1",
"prettier-package-json": "2.6.0",
"typescript": "4.5.5"
},
"keywords": [
"20",
"addons",
"bot",
"discord",
"questions",
"sa",
"scratch"
],
"nodemonConfig": {
"ext": "js,json,env",
"delay": 10
},
"prettier": "@redguy12/prettier-config",
"prettier-package-json": {
"tabWidth": 4,
"useTabs": true,
"expandUsers": true
}
}