Skip to content

Commit 00dff2f

Browse files
committed
chore: update dependencies
1 parent bd3ea4e commit 00dff2f

40 files changed

+2322
-2278
lines changed

.changeset/config.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
3-
"changelog": "@changesets/cli/changelog",
4-
"commit": false,
5-
"fixed": [],
6-
"linked": [],
7-
"access": "public",
8-
"baseBranch": "main",
9-
"updateInternalDependencies": "patch",
10-
"ignore": []
2+
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
1111
}

.vscode/settings.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"editor.defaultFormatter": "biomejs.biome",
3-
"json.schemas": [
4-
{
5-
"url": "https://cdn.jsdelivr.net/npm/tsup/schema.json",
6-
"fileMatch": ["package.json", "tsup.config.json"]
7-
}
8-
]
2+
"editor.defaultFormatter": "biomejs.biome",
3+
"json.schemas": [
4+
{
5+
"url": "https://cdn.jsdelivr.net/npm/tsup/schema.json",
6+
"fileMatch": ["package.json", "tsup.config.json"]
7+
}
8+
]
99
}

biome.json

Lines changed: 65 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,67 @@
11
{
2-
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3-
"files": {
4-
"ignore": ["node_modules", "lib"]
5-
},
6-
"organizeImports": {
7-
"enabled": true
8-
},
9-
"linter": {
10-
"enabled": true,
11-
"rules": {
12-
"recommended": true,
13-
"style": {
14-
"noParameterAssign": "off",
15-
"useNodejsImportProtocol": "off"
16-
},
17-
"suspicious": {
18-
"noExplicitAny": "off"
19-
}
20-
}
21-
},
22-
"formatter": {
23-
"enabled": true,
24-
"formatWithErrors": true
25-
}
2+
"vcs": {
3+
"enabled": true,
4+
"clientKind": "git",
5+
"useIgnoreFile": true,
6+
"defaultBranch": "main"
7+
},
8+
9+
"linter": {
10+
"enabled": true,
11+
"rules": {
12+
"recommended": true,
13+
"style": {
14+
"noParameterAssign": "off",
15+
"useNodejsImportProtocol": "off"
16+
},
17+
"suspicious": {
18+
"noExplicitAny": "off"
19+
},
20+
"correctness": {
21+
"noUnusedImports": { "level": "warn", "fix": "safe" },
22+
"noUnusedVariables": { "level": "warn", "fix": "none" },
23+
"noUnusedFunctionParameters": "warn"
24+
}
25+
}
26+
},
27+
28+
"formatter": {
29+
"enabled": true,
30+
"formatWithErrors": false,
31+
"indentStyle": "space",
32+
"indentWidth": 2,
33+
"lineEnding": "lf",
34+
"lineWidth": 80,
35+
"attributePosition": "auto"
36+
},
37+
38+
"assist": {
39+
"actions": {
40+
"source": {
41+
"organizeImports": {
42+
"level": "on",
43+
"options": {
44+
"groups": [
45+
{
46+
"type": true,
47+
"source": [
48+
":NODE:",
49+
":URL:",
50+
":PACKAGE_WITH_PROTOCOL:",
51+
":PACKAGE:"
52+
]
53+
},
54+
[":NODE:", ":URL:", ":PACKAGE_WITH_PROTOCOL:", ":PACKAGE:"],
55+
":BLANK_LINE:",
56+
{ "type": true, "source": "@/**" },
57+
"@/**",
58+
":BLANK_LINE:",
59+
{ "type": true, "source": ":PATH:" },
60+
":PATH:"
61+
]
62+
}
63+
}
64+
}
65+
}
66+
}
2667
}

package.json

Lines changed: 65 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,67 @@
11
{
2-
"name": "@squarecloud/api",
3-
"version": "3.7.9",
4-
"description": "A NodeJS wrapper for Square Cloud API",
5-
"exports": {
6-
".": {
7-
"import": {
8-
"types": "./lib/index.d.ts",
9-
"default": "./lib/index.js"
10-
},
11-
"require": {
12-
"types": "./lib/index.d.cts",
13-
"default": "./lib/index.cjs"
14-
},
15-
"default": "./lib/index.js"
16-
}
17-
},
18-
"packageManager": "pnpm@10.11.1",
19-
"type": "module",
20-
"scripts": {
21-
"release": "pnpm build && changeset publish",
22-
"build": "tsup ./src",
23-
"check-types": "tsc --noEmit",
24-
"lint": "biome check --write .",
25-
"lint:ci": "biome check .",
26-
"test": "node --test test/*.test.js"
27-
},
28-
"engines": {
29-
"node": ">=18.0.0"
30-
},
31-
"devDependencies": {
32-
"@biomejs/biome": "^1.9.4",
33-
"@changesets/cli": "^2.29.4",
34-
"@squarecloud/api-types": "^0.5.0",
35-
"@types/node": "^22.15.29",
36-
"ts-node": "^10.9.2",
37-
"ts-node-dev": "^2.0.0",
38-
"tsc-alias": "^1.8.16",
39-
"tsup": "^8.5.0",
40-
"typescript": "^5.8.3"
41-
},
42-
"keywords": [
43-
"wrapper",
44-
"square",
45-
"squarecloud",
46-
"api",
47-
"typescript",
48-
"app",
49-
"bot",
50-
"website",
51-
"host"
52-
],
53-
"author": {
54-
"name": "joaotonaco",
55-
"url": "https://github.com/joaotonaco"
56-
},
57-
"repository": {
58-
"type": "git",
59-
"url": "git+https://github.com/squarecloudofc/sdk-api-js.git"
60-
},
61-
"bugs": {
62-
"url": "https://github.com/squarecloudofc/sdk-api-js/issues"
63-
},
64-
"homepage": "https://docs.squarecloud.app/sdks/js/client",
65-
"license": "MIT"
2+
"name": "@squarecloud/api",
3+
"version": "3.7.9",
4+
"description": "A NodeJS wrapper for Square Cloud API",
5+
"exports": {
6+
".": {
7+
"import": {
8+
"types": "./lib/index.d.ts",
9+
"default": "./lib/index.js"
10+
},
11+
"require": {
12+
"types": "./lib/index.d.cts",
13+
"default": "./lib/index.cjs"
14+
},
15+
"types": "./lib/index.d.ts",
16+
"default": "./lib/index.js"
17+
}
18+
},
19+
"packageManager": "pnpm@10.11.1",
20+
"type": "module",
21+
"scripts": {
22+
"release": "pnpm build && changeset publish",
23+
"build": "tsup ./src",
24+
"check-types": "tsc --noEmit",
25+
"lint": "biome check --write .",
26+
"lint:ci": "biome check .",
27+
"test": "node --test test/*.test.js"
28+
},
29+
"engines": {
30+
"node": ">=18.0.0"
31+
},
32+
"devDependencies": {
33+
"@biomejs/biome": "^2.2.4",
34+
"@changesets/cli": "^2.29.7",
35+
"@squarecloud/api-types": "^0.6.0",
36+
"@types/node": "^24.5.2",
37+
"ts-node": "^10.9.2",
38+
"ts-node-dev": "^2.0.0",
39+
"tsc-alias": "^1.8.16",
40+
"tsup": "^8.5.0",
41+
"typescript": "^5.9.2"
42+
},
43+
"keywords": [
44+
"wrapper",
45+
"square",
46+
"squarecloud",
47+
"api",
48+
"typescript",
49+
"app",
50+
"bot",
51+
"website",
52+
"host"
53+
],
54+
"author": {
55+
"name": "joaotonaco",
56+
"url": "https://github.com/joaotonaco"
57+
},
58+
"repository": {
59+
"type": "git",
60+
"url": "git+https://github.com/squarecloudofc/sdk-api-js.git"
61+
},
62+
"bugs": {
63+
"url": "https://github.com/squarecloudofc/sdk-api-js/issues"
64+
},
65+
"homepage": "https://docs.squarecloud.app/sdks/js/client",
66+
"license": "MIT"
6667
}

0 commit comments

Comments
 (0)