-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@skyra/editable-commands",
"version": "3.0.4",
"description": "A framework agnostic library for editable commands",
"author": "@skyra",
"license": "MIT",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.cts",
"exports": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"sideEffects": false,
"homepage": "https://skyra-project.github.io/editable-commands",
"scripts": {
"lint": "eslint src --ext ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc",
"build": "tsup && yarn build:rename-mjs-index",
"build:rename-mjs-index": "node scripts/rename-mjs-index.mjs",
"typecheck": "tsc -p tsconfig.eslint.json",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build"
},
"files": [
"dist/"
],
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@favware/cliff-jumper": "^6.0.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.14.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "^0.37.98",
"discord.js": "^14.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typedoc": "^0.26.1",
"typescript": "^5.5.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/editable-commands.git"
},
"engines": {
"node": ">=16.6",
"npm": ">=7.24.2"
},
"keywords": [
"discord.js",
"editable",
"commands",
"utility"
],
"bugs": {
"url": "https://github.com/skyra-project/editable-commands/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.9.0"
}