-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "zeneth",
"version": "1.0.0-dev",
"description": "A library to interact with discord api easily ",
"main": "./dist/cjs/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"test": "node tests",
"start": "node index.js",
"build": "npm run addpkg && npx tsc -p tsconfig.esm.json && npx tsc -p tsconfig.cjs.json && npm run createpack",
"createpack": "node packers/pack.js",
"addpkg": "node packers/addpkgjson.js",
"bundleTsFiles": "node packers/bundle.js",
"lint": "eslint . --ext .ts --fix --ext .js",
"docgen": "node ./packers/updateTypeDocConfig.js && npx typedoc --plugin typedoc-theme-hierarchy --plugin typedoc-plugin-mermaid --plugin typedoc-plugin-extras --footerLastModified && node ./packers/docgen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akaruidevelopment/zeneth.git"
},
"keywords": [
"discord-api",
"discord",
"api",
"nodejs",
"deno",
"discordbot"
],
"author": "Akarui Development",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/akaruidevelopment/zeneth/issues"
},
"homepage": "https://github.com/akaruidevelopment/zeneth#readme",
"devDependencies": {
"@types/csso": "^5.0.0",
"@types/node": "^18.11.18",
"@types/uglify-js": "^3.17.1",
"@types/ws": "^8.5.4",
"csso": "^5.0.5",
"typedoc": "^0.24.8",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-extras": "^2.3.3",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-mermaid": "^1.10.0",
"typedoc-theme-hierarchy": "^4.0.0",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
},
"dependencies": {
"@akarui/structures": "^2.0.1",
"file-type": "^18.2.0",
"ws": "^8.12.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
]
}