trivious 1.3.13 → 1.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -201
- package/README.md +126 -126
- package/dist/index.cjs +210 -343
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +128 -249
- package/dist/index.js.map +1 -1
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "trivious",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"discord-bot",
|
|
7
|
-
"discordjs",
|
|
8
|
-
"slash-commands",
|
|
9
|
-
"bot-framework",
|
|
10
|
-
"discord-permissions",
|
|
11
|
-
"subcommands",
|
|
12
|
-
"discord-components",
|
|
13
|
-
"context-menu",
|
|
14
|
-
"auto-load",
|
|
15
|
-
"typescript-discord"
|
|
16
|
-
],
|
|
17
|
-
"license": "Apache-2.0",
|
|
18
|
-
"publishConfig": {
|
|
19
|
-
"access": "public"
|
|
20
|
-
},
|
|
21
|
-
"main": "./dist/index.js",
|
|
22
|
-
"types": "./dist/index.d.ts",
|
|
23
|
-
"exports": {
|
|
24
|
-
".": {
|
|
25
|
-
"types": "./dist/index.d.ts",
|
|
26
|
-
"import": "./dist/index.js",
|
|
27
|
-
"require": "./dist/index.cjs",
|
|
28
|
-
"default": "./dist/index.js"
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"files": [
|
|
32
|
-
"dist",
|
|
33
|
-
"package.json"
|
|
34
|
-
],
|
|
35
|
-
"repository": {
|
|
36
|
-
"type": "git",
|
|
37
|
-
"url": "git+https://github.com/commonly-ts/trivious.git"
|
|
38
|
-
},
|
|
39
|
-
"bugs": {
|
|
40
|
-
"url": "https://github.com/commonly-ts/trivious/issues"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "tsup",
|
|
44
|
-
"lint": "eslint --fix src",
|
|
45
|
-
"format": "prettier --write src",
|
|
46
|
-
"typecheck": "tsc --noEmit",
|
|
47
|
-
"test": "vitest run --pass-with-no-tests",
|
|
48
|
-
"coverage": "vitest run --coverage",
|
|
49
|
-
"dev": "tsup --watch",
|
|
50
|
-
"release": "semantic-release",
|
|
51
|
-
"prepare": "npm run build"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
55
|
-
"@semantic-release/git": "^10.0.1",
|
|
56
|
-
"@semantic-release/github": "^12.0.2",
|
|
57
|
-
"@semantic-release/npm": "^13.1.2",
|
|
58
|
-
"@types/node": "^24.10.1",
|
|
59
|
-
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
60
|
-
"@typescript-eslint/parser": "^8.47.0",
|
|
61
|
-
"@vitest/coverage-v8": "^4.0.13",
|
|
62
|
-
"dotenv": "^17.2.3",
|
|
63
|
-
"eslint": "^9.39.1",
|
|
64
|
-
"eslint-config-prettier": "^10.1.8",
|
|
65
|
-
"jsdoc": "^4.0.5",
|
|
66
|
-
"prettier": "^3.6.2",
|
|
67
|
-
"semantic-release": "^25.0.2",
|
|
68
|
-
"tsup": "^8.5.1",
|
|
69
|
-
"typescript": "^5.9.3",
|
|
70
|
-
"vitest": "^4.0.13"
|
|
71
|
-
},
|
|
72
|
-
"dependencies": {
|
|
73
|
-
"discord.js": "^14.25.1"
|
|
74
|
-
}
|
|
75
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "trivious",
|
|
3
|
+
"version": "1.3.15",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"discord-bot",
|
|
7
|
+
"discordjs",
|
|
8
|
+
"slash-commands",
|
|
9
|
+
"bot-framework",
|
|
10
|
+
"discord-permissions",
|
|
11
|
+
"subcommands",
|
|
12
|
+
"discord-components",
|
|
13
|
+
"context-menu",
|
|
14
|
+
"auto-load",
|
|
15
|
+
"typescript-discord"
|
|
16
|
+
],
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"require": "./dist/index.cjs",
|
|
28
|
+
"default": "./dist/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"package.json"
|
|
34
|
+
],
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/commonly-ts/trivious.git"
|
|
38
|
+
},
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/commonly-ts/trivious/issues"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup",
|
|
44
|
+
"lint": "eslint --fix src",
|
|
45
|
+
"format": "prettier --write src",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"test": "vitest run --pass-with-no-tests",
|
|
48
|
+
"coverage": "vitest run --coverage",
|
|
49
|
+
"dev": "tsup --watch",
|
|
50
|
+
"release": "semantic-release",
|
|
51
|
+
"prepare": "npm run build"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
55
|
+
"@semantic-release/git": "^10.0.1",
|
|
56
|
+
"@semantic-release/github": "^12.0.2",
|
|
57
|
+
"@semantic-release/npm": "^13.1.2",
|
|
58
|
+
"@types/node": "^24.10.1",
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
60
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
61
|
+
"@vitest/coverage-v8": "^4.0.13",
|
|
62
|
+
"dotenv": "^17.2.3",
|
|
63
|
+
"eslint": "^9.39.1",
|
|
64
|
+
"eslint-config-prettier": "^10.1.8",
|
|
65
|
+
"jsdoc": "^4.0.5",
|
|
66
|
+
"prettier": "^3.6.2",
|
|
67
|
+
"semantic-release": "^25.0.2",
|
|
68
|
+
"tsup": "^8.5.1",
|
|
69
|
+
"typescript": "^5.9.3",
|
|
70
|
+
"vitest": "^4.0.13"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"discord.js": "^14.25.1"
|
|
74
|
+
}
|
|
75
|
+
}
|