-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "@poporonnet/discord-pure",
"version": "0.4.0",
"description": "The library to communicate with pure discord REST API.",
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/poporonnet/discord-pure.git"
},
"bugs": {
"url": "https://github.com/poporonnet/discord-pure/issues"
},
"homepage": "https://poporonnet.github.io/discord-pure",
"author": "tufusa <[email protected]> & Poporon Network",
"license": "MIT",
"keywords": [
"discord",
"bot",
"api"
],
"scripts": {
"build": "tsc",
"check": "biome check --write",
"check:ci": "biome ci",
"doc": "typedoc --skipErrorChecking src/index.ts src/controller/*.ts"
},
"dependencies": {
"@mikuroxina/mini-fn": "^6.7.0",
"discord-api-types": "^0.37.103"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"typedoc": "0.27.6",
"typescript": "5.7.3"
},
"packageManager": "[email protected]"
}