-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.23 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "djseed",
"version": "14.0.1",
"description": "💫 Discord.JS multiutil",
"license": "MIT",
"author": "nobu-sh",
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly",
"commit": "commit",
"format": "prettier --write **/*.{ts,js,json,yml,yaml}",
"lint": "eslint packages --ext mjs,js,ts",
"lint:fix": "eslint packages --ext mjs,js,ts --fix",
"prepack": "npm run build",
"prepare": "husky install",
"test": "ts-node ./__tests__/index.ts",
"jest:test": "jest --pass-with-no-tests",
"jest:test:ci": "jest --no-stack-trace --verbose --pass-with-no-tests",
"deploy:docs": "cd ./docs & cmd /C \"set \"GIT_USER=nobu_sh\" && npm run deploy\""
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"homepage": "https://github.com/nobu-sh/djseed#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nobu-sh/djseed.git"
},
"bugs": {
"url": "https://github.com/nobu-sh/djseed/issues"
},
"dependencies": {
"axios": "^0.24.0"
},
"peerDependencies": {
"discord.js": ">= 14.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-angular": "^16.0.0",
"@commitlint/prompt-cli": "^16.0.0",
"@swc/core": "^1.2.196",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"eslint-config-marine": "^9.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tsup": "^5.11.10",
"typescript": "^4.5.4"
}
}