itd-api 0.0.3 → 0.0.5

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,6 +1,6 @@
1
1
  {
2
2
  "name": "itd-api",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Клиент REST и realtime API социальной сети итд.com для JavaScript и TypeScript",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,6 +34,9 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
+ "workspaces": [
38
+ "turnstile"
39
+ ],
37
40
  "main": "./dist/index.cjs",
38
41
  "module": "./dist/index.js",
39
42
  "types": "./dist/index.d.ts",
@@ -71,11 +74,12 @@
71
74
  "build": "tsup",
72
75
  "dev": "tsup --watch",
73
76
  "test": "vitest run",
77
+ "test:all": "npm run test && npm run test --workspaces --if-present",
74
78
  "test:watch": "vitest",
75
79
  "test:coverage": "vitest run --coverage",
76
80
  "typecheck": "tsc --noEmit",
77
- "lint": "biome check src test",
78
- "lint:fix": "biome check --write src test",
81
+ "lint": "biome check src test turnstile/src turnstile/test",
82
+ "lint:fix": "biome check --write src test turnstile/src turnstile/test",
79
83
  "docs": "typedoc",
80
84
  "check:pack": "publint && attw --pack .",
81
85
  "prepublishOnly": "npm run typecheck && npm run test && npm run build && npm run check:pack"