-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "now-answer-me",
"version": "2.4.2",
"description": "i dont know what purpose this serves",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./utils": "./utils/index.js",
"./bot": "./bot/index.js",
"./static": "./static/index.js",
"./features": "./features/index.js",
"./types": "./types/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "find . -type f \\( -name '*.d.ts' -or -name '*.js' \\) -not -path './node_modules*' -not -path './apo*' -delete && tsc && node test.mjs",
"clear": "find . -type f \\( -name '*.d.ts' -or -name '*.js' \\) -not -path './node_modules*' -not -path './apo*' -delete"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nev-r/now-answer-me.git"
},
"author": "nev",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/nev-r/now-answer-me/issues"
},
"homepage": "https://github.com/nev-r/now-answer-me#readme",
"dependencies": {
"one-stone": "^1.0.3"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eledoc": "^0.2.1",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"typedoc": "^0.21.9",
"typedoc-plugin-markdown": "^3.0.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"discord.js": "^13.3.x"
}
}