@chatsystem/client 1.2.0 → 1.2.2

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": "@chatsystem/client",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",
@@ -23,18 +23,26 @@
23
23
  },
24
24
  "scripts": {
25
25
  "tw": "tailwindcss -i ./src/stylesheets/input.css -o ./src/stylesheets/output.css --watch",
26
- "dev": "NODE_ENV=development && vite",
26
+ "dev": "NODE_ENV=development vite",
27
27
  "build": "tsc && vite build",
28
28
  "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
29
29
  "preview": "vite preview",
30
- "pub": "tsc -b && npx vite build && npm publish",
31
30
  "test": "node --test --experimental-strip-types test/*.test.ts",
32
31
  "dev:identity-gate": "node e2e/identity-gate/dev.mjs",
33
- "check:identity-gate": "npm run build && tsc --noEmit -p e2e/identity-gate/tsconfig.json",
32
+ "typecheck:identity-gate": "tsc --noEmit -p e2e/identity-gate/tsconfig.json",
33
+ "check:identity-gate": "npm run build && npm run typecheck:identity-gate",
34
34
  "test:identity-gate": "npm run build && playwright test --config e2e/identity-gate/playwright.config.ts",
35
35
  "test:identity-gate:full-stack-client": "npm run build && playwright test --config e2e/identity-gate/full-stack.playwright.config.ts",
36
36
  "test:identity-gate:ui": "npm run build && playwright test --ui --config e2e/identity-gate/playwright.config.ts"
37
37
  },
38
+ "engines": {
39
+ "node": ">=22.14.0",
40
+ "npm": ">=11.5.1"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public",
44
+ "registry": "https://registry.npmjs.org/"
45
+ },
38
46
  "dependencies": {
39
47
  "@chatsystem/shared": "^1.0.31",
40
48
  "@lottiefiles/dotlottie-react": "^0.15.0",