@plyaz/types 1.0.1 → 1.0.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/README.md +220 -220
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +22 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plyaz/types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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"
|
|
@@ -111,5 +88,26 @@
|
|
|
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
|
+
"release:publish": "pnpm publish --access public",
|
|
110
|
+
"publish:ci": "pnpm publish --access public --no-git-checks",
|
|
111
|
+
"release": "changeset version && pnpm run build"
|
|
114
112
|
}
|
|
115
113
|
}
|