@wolfstar/http-framework 2.3.1 → 3.1.0

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/package.json CHANGED
@@ -1,69 +1,68 @@
1
1
  {
2
- "name": "@wolfstar/http-framework",
3
- "version": "2.3.1",
4
- "description": "The framework for Star Network's HTTP-only bots",
5
- "keywords": [
6
- "api",
7
- "discord",
8
- "http",
9
- "pnpm",
10
- "ts",
11
- "typescript",
12
- "wolfstar"
13
- ],
14
- "bugs": {
15
- "url": "https://github.com/wolfstar-project/stars-components/issues"
16
- },
17
- "license": "Apache-2.0",
18
- "author": "@wolfstar",
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/wolfstar-project/stars-components.git",
22
- "directory": "packages/http-framework"
23
- },
24
- "files": [
25
- "dist/"
26
- ],
27
- "type": "module",
28
- "sideEffects": false,
29
- "main": "dist/esm/index.js",
30
- "module": "dist/esm/index.js",
31
- "types": "dist/esm/index.d.ts",
32
- "exports": {
33
- "import": {
34
- "types": "./dist/esm/index.d.ts",
35
- "default": "./dist/esm/index.js"
36
- }
37
- },
38
- "publishConfig": {
39
- "access": "public"
40
- },
41
- "scripts": {
42
- "test": "vitest run",
43
- "build": "tsdown --config-loader unrun",
44
- "watch": "tsdown --config-loader unrun --watch",
45
- "typecheck": "tsc -p ../../tsconfig.json",
46
- "lint": "oxlint src --fix",
47
- "prepack": "pnpm run build"
48
- },
49
- "dependencies": {
50
- "@discordjs/builders": "^1.14.1",
51
- "@discordjs/collection": "^2.1.1",
52
- "@discordjs/rest": "^2.6.1",
53
- "@discordjs/util": "^1.2.0",
54
- "@sapphire/pieces": "^4.4.1",
55
- "@sapphire/result": "^2.8.0",
56
- "@sapphire/utilities": "^3.18.2",
57
- "@vladfrangu/async_event_emitter": "^2.4.7",
58
- "discord-api-types": "^0.38.8"
59
- },
60
- "devDependencies": {
61
- "@vitest/coverage-v8": "^4.1.9",
62
- "tsdown": "^0.22.3",
63
- "typescript": "~5.8.3",
64
- "vitest": "^4.1.9"
65
- },
66
- "engines": {
67
- "node": ">=20"
68
- }
69
- }
2
+ "name": "@wolfstar/http-framework",
3
+ "version": "3.1.0",
4
+ "description": "The framework for Star Network's HTTP-only bots",
5
+ "keywords": [
6
+ "api",
7
+ "discord",
8
+ "http",
9
+ "pnpm",
10
+ "ts",
11
+ "typescript",
12
+ "wolfstar"
13
+ ],
14
+ "bugs": {
15
+ "url": "https://github.com/wolfstar-project/stars-components/issues"
16
+ },
17
+ "license": "Apache-2.0",
18
+ "author": "@wolfstar",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/wolfstar-project/stars-components.git",
22
+ "directory": "packages/http-framework"
23
+ },
24
+ "files": [
25
+ "dist/"
26
+ ],
27
+ "type": "module",
28
+ "sideEffects": false,
29
+ "main": "dist/esm/index.js",
30
+ "module": "dist/esm/index.js",
31
+ "types": "dist/esm/index.d.ts",
32
+ "exports": {
33
+ "import": {
34
+ "types": "./dist/esm/index.d.ts",
35
+ "default": "./dist/esm/index.js"
36
+ }
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "dependencies": {
42
+ "@discordjs/builders": "^1.14.1",
43
+ "@discordjs/collection": "^2.1.1",
44
+ "@discordjs/rest": "^2.6.1",
45
+ "@discordjs/util": "^1.2.0",
46
+ "@sapphire/pieces": "^4.4.1",
47
+ "@sapphire/result": "^2.8.0",
48
+ "@sapphire/utilities": "^3.18.2",
49
+ "@vladfrangu/async_event_emitter": "^2.4.7",
50
+ "discord-api-types": "^0.38.8"
51
+ },
52
+ "devDependencies": {
53
+ "@vitest/coverage-v8": "^4.1.9",
54
+ "tsdown": "^0.22.3",
55
+ "typescript": "~5.8.3",
56
+ "vitest": "^4.1.9"
57
+ },
58
+ "engines": {
59
+ "node": ">=20"
60
+ },
61
+ "scripts": {
62
+ "test": "vitest run",
63
+ "build": "tsdown --config-loader unrun",
64
+ "watch": "tsdown --config-loader unrun --watch",
65
+ "typecheck": "tsc -p ../../tsconfig.json",
66
+ "lint": "oxlint src --fix"
67
+ }
68
+ }