guildwars2-ts 1.2.3 → 1.4.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,48 +1,32 @@
1
1
  {
2
- "name": "guildwars2-ts",
3
- "version": "1.2.3",
4
- "description": "GuildWars 2 API Wrapper in Typescript",
5
- "homepage": "https://gitlab.com/dinckelman/guildwars2-ts",
6
- "main": "dist/index.js",
7
- "module": "dist/index.mjs",
8
- "types": "dist/index.d.ts",
9
- "files": [
10
- "dist/",
11
- "LICENSE",
12
- "README.md",
13
- "package.json"
14
- ],
15
- "license": "ISC",
16
- "keywords": [
17
- "guildwars",
18
- "guildwars2",
19
- "guild wars",
20
- "guild wars 2",
21
- "gw",
22
- "gw2"
23
- ],
24
- "dependencies": {
25
- "axios": "1.7.9",
26
- "promise-queue": "2.2.5",
27
- "tslog": "4.9.3",
28
- "zod": "3.24.1"
29
- },
30
- "devDependencies": {
31
- "@biomejs/biome": "^1.6.3",
32
- "@jest/globals": "^29.7.0",
33
- "@types/node": "^22.0.0",
34
- "@types/promise-queue": "^2.2.3",
35
- "jest": "^29.7.0",
36
- "ts-jest": "^29.1.2",
37
- "ts-node": "^10.9.2",
38
- "tsup": "^8.0.2",
39
- "typescript": "^5.4.3"
40
- },
41
- "scripts": {
42
- "lint:dry": "biome check .",
43
- "lint": "biome check . --write",
44
- "build": "tsup --env.NODE_ENV production",
45
- "test": "jest",
46
- "test:coverage": "jest --coverage"
47
- }
48
- }
2
+ "name": "guildwars2-ts",
3
+ "version": "1.4.0",
4
+ "description": "GuildWars 2 API Wrapper in Typescript",
5
+ "homepage": "https://gitlab.com/dinckelman/guildwars2-ts",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.mjs",
8
+ "types": "dist/index.d.ts",
9
+ "files": ["dist/", "LICENSE", "README.md", "package.json"],
10
+ "scripts": {
11
+ "lint:dry": "biome check .",
12
+ "lint": "biome check . --write",
13
+ "build": "bun bun.build.ts",
14
+ "test": "bun test"
15
+ },
16
+ "license": "ISC",
17
+ "keywords": ["guildwars", "guildwars2", "guild wars", "guild wars 2", "gw", "gw2"],
18
+ "dependencies": {
19
+ "axios": "1.9.0",
20
+ "promise-queue": "2.2.5",
21
+ "tslog": "4.9.3",
22
+ "zod": "^4.0.0-beta.20250412T085909"
23
+ },
24
+ "devDependencies": {
25
+ "@biomejs/biome": "1.9.4",
26
+ "@tsconfig/bun": "^1.0.7",
27
+ "@types/bun": "^1.2.9",
28
+ "@types/promise-queue": "^2.2.3",
29
+ "bun-plugin-dts": "^0.3.0",
30
+ "typescript": "^5.4.3"
31
+ }
32
+ }