@ptx-showcase/utils 0.0.1

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 ADDED
@@ -0,0 +1,3 @@
1
+ # @ptx-showcase/utils
2
+
3
+ ## Shared utilities for PTX Showcase projects
package/dist/index.cjs ADDED
@@ -0,0 +1 @@
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});function e(e){return`Hello, ${e}!`}exports.hello=e;
@@ -0,0 +1 @@
1
+ export {}
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ //#region src/index.ts
2
+ function e(e) {
3
+ return `Hello, ${e}!`;
4
+ }
5
+ //#endregion
6
+ export { e as hello };
@@ -0,0 +1 @@
1
+ export declare function hello(name: string): string;
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@ptx-showcase/utils",
3
+ "description": "Shared utilities for PTX Showcase projects",
4
+ "version": "0.0.1",
5
+ "private": false,
6
+ "type": "module",
7
+ "license": "MIT",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "main": "./dist/index.cjs",
12
+ "module": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js",
18
+ "require": "./dist/index.cjs"
19
+ }
20
+ },
21
+ "scripts": {
22
+ "dev": "vite",
23
+ "build": "tsc && vite build",
24
+ "preview": "vite preview"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^25.6.0",
31
+ "typescript": "~6.0.3",
32
+ "vite": "^8.0.8",
33
+ "vite-plugin-dts": "^4.5.4"
34
+ }
35
+ }