-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.73 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.73 KB
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
{
"name": "framework",
"version": "0.1.3",
"description": "",
"keywords": [
"arox",
"discord.js",
"framework"
],
"homepage": "https://github.com/AroxBot/framework#readme",
"bugs": {
"url": "https://github.com/AroxBot/framework/issues"
},
"license": "Apache-2.0",
"author": "vrdons",
"contributors": [
"fhyrox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AroxBot/framework.git"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"scripts": {
"prepare": "node scripts/prepareHusky.js",
"example": "node examples/basic_client/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"check": "oxlint --type-aware --type-check && oxfmt --check",
"format": "oxfmt",
"build:js": "node ./scripts/build.js",
"build:dts": "tsc --emitDeclarationOnly && tsc-alias -p tsconfig.json && node ./scripts/createCjsTypes.js",
"build": "npm run build:js && npm run build:dts"
},
"dependencies": {
"@sapphire/timestamp": "^1.0.5",
"colorette": "^2.0.20",
"fast-glob": "^3.3.3",
"fastest-levenshtein": "^1.0.16",
"i18next": "^25.8.0"
},
"devDependencies": {
"esbuild": "^0.27.3",
"husky": "^9.1.7",
"i18next-fs-backend": "^2.6.1",
"libnpmpack": "~9",
"oxfmt": "^0.39.0",
"oxlint": "^1.39.0",
"oxlint-tsgolint": "^0.16.0",
"tsc-alias": "^1.8.16",
"typescript": "~5",
"unplugin-oxc": "^0.6.0"
},
"peerDependencies": {
"discord.js": ">=14.25.1"
}
}