@plyaz/types 1.0.1 → 1.0.3

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": "@plyaz/types",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",
@@ -20,29 +20,6 @@
20
20
  "files": [
21
21
  "dist"
22
22
  ],
23
- "scripts": {
24
- "build": "pnpm clean && pnpm build:js && pnpm build:types",
25
- "build:js": "tsup",
26
- "build:types": "tsc --emitDeclarationOnly --outDir dist",
27
- "build:watch": "tsup --watch",
28
- "dev": "tsup --watch",
29
- "lint": "eslint ./src",
30
- "lint:fix": "eslint ./src --fix",
31
- "format": "prettier --write './**/*.{ts,tsx,js,jsx}'",
32
- "format:check": "prettier --check './**/*.{ts,tsx,js,jsx}'",
33
- "type:check": "tsc --noEmit",
34
- "test": "vitest run --no-watch",
35
- "test:ci": "vitest run --no-watch",
36
- "test:watch": "vitest --watch",
37
- "test:coverage": "vitest run --coverage",
38
- "test:ui": "vitest --ui",
39
- "clean": "rm -rf dist",
40
- "release:publish": "pnpm publish --access public",
41
- "publish:ci": "pnpm publish --access public --no-git-checks",
42
- "prepublishOnly": "pnpm run build && pnpm run test && pnpm run lint",
43
- "release": "changeset version && pnpm run build",
44
- "publish": "changeset publish"
45
- },
46
23
  "engines": {
47
24
  "node": ">=22.4.0",
48
25
  "pnpm": ">=8.0.0"
@@ -51,22 +28,23 @@
51
28
  "packageManager": "pnpm@10.11.0",
52
29
  "devDependencies": {
53
30
  "@changesets/cli": "^2.29.5",
31
+ "@plyaz/devtools": "^1.2.33",
32
+ "@types/node": "^20.0.0",
33
+ "@vitest/coverage-v8": "^3.1.3",
54
34
  "@darraghor/eslint-plugin-nestjs-typed": "^6.6.2",
55
35
  "@eslint/eslintrc": "^3.2.0",
56
36
  "@eslint/js": "^9.15.0",
57
37
  "@eslint/markdown": "^6.5.0",
58
38
  "@nestjs/common": "^11.1.3",
59
39
  "@next/eslint-plugin-next": "^15.0.3",
60
- "@plyaz/devtools": "^1.2.24",
61
- "@types/node": "^20.0.0",
62
40
  "@typescript-eslint/eslint-plugin": "^8.15.0",
63
41
  "@typescript-eslint/parser": "^8.15.0",
64
- "@vitest/coverage-v8": "^3.1.3",
65
42
  "eslint": "^9.15.0",
66
43
  "eslint-config-next": "^15.3.3",
67
44
  "eslint-config-prettier": "^9.1.0",
68
45
  "eslint-import-resolver-typescript": "^3.10.1",
69
46
  "eslint-mdx": "^3.5.0",
47
+ "eslint-plugin-better-tailwindcss": "3.2.1",
70
48
  "eslint-plugin-functional": "^4.4.1",
71
49
  "eslint-plugin-import": "^2.31.0",
72
50
  "eslint-plugin-jest": "^28.13.5",
@@ -83,9 +61,8 @@
83
61
  "eslint-plugin-security": "^3.0.1",
84
62
  "eslint-plugin-simple-import-sort": "^12.1.1",
85
63
  "eslint-plugin-sonarjs": "^0.23.0",
86
- "eslint-plugin-tailwindcss": "^3.18.0",
87
64
  "eslint-plugin-testing-library": "^6.5.0",
88
- "eslint-plugin-unicorn": "^56.0.1",
65
+ "eslint-plugin-unicorn": "^59.0.1",
89
66
  "eslint-plugin-unused-imports": "^4.1.4",
90
67
  "jiti": "^2.4.2",
91
68
  "jsdom": "^26.1.0",
@@ -111,5 +88,30 @@
111
88
  "next": {
112
89
  "optional": true
113
90
  }
91
+ },
92
+ "scripts": {
93
+ "build": "pnpm clean && pnpm build:js && pnpm build:types",
94
+ "build:js": "tsup",
95
+ "build:types": "tsc --emitDeclarationOnly --outDir dist",
96
+ "build:watch": "tsup --watch",
97
+ "dev": "tsup --watch",
98
+ "lint": "eslint ./src",
99
+ "lint:fix": "eslint ./src --fix",
100
+ "format": "prettier --write './**/*.{ts,tsx,js,jsx}'",
101
+ "format:check": "prettier --check './**/*.{ts,tsx,js,jsx}'",
102
+ "type:check": "tsc --noEmit",
103
+ "test": "vitest run --no-watch",
104
+ "test:ci": "vitest run --no-watch",
105
+ "test:watch": "vitest --watch",
106
+ "test:coverage": "vitest run --coverage",
107
+ "test:ui": "vitest --ui",
108
+ "clean": "rm -rf dist",
109
+ "audit": "pnpm audit",
110
+ "audit:moderate": "pnpm audit --audit-level moderate",
111
+ "audit:high": "pnpm audit --audit-level high",
112
+ "audit:critical": "pnpm audit --audit-level critical",
113
+ "audit:fix": "pnpm audit --fix",
114
+ "audit:enhanced": "npx audit-ci --moderate",
115
+ "security:check": "pnpm audit:moderate && npx audit-ci --moderate"
114
116
  }
115
117
  }