@puq/type 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,20 @@
1
+ # @puq/type
2
+
3
+ ## Summary
4
+
5
+ Common model and utility types
6
+
7
+ ## Install
8
+
9
+ `pnpm add @puq/type`
10
+
11
+ ## License
12
+
13
+ Copyright (c) 2024 **Brightline Software**
14
+ All rights reserved.
15
+
16
+ This software is proprietary and confidential. Unauthorized copying, distribution, or use of this code, via any medium, is strictly prohibited.
17
+
18
+ Licensed only for internal or authorized use under the terms agreed upon between **Brightline Software** and the licensee.
19
+
20
+ For licensing inquiries, contact: [robert.brightline@gmail.com]
@@ -0,0 +1,2 @@
1
+ export * from './lib/type.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from './lib/type.js';
2
+
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from './lib/type.js';\n"],"names":[],"rangeMappings":"","mappings":"AAAA,cAAc,gBAAgB"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Return the text `type`
3
+ * @returns
4
+ */
5
+ export declare function type(): string;
6
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../src/lib/type.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,wBAAgB,IAAI,IAAI,MAAM,CAE7B"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Return the text `type`
3
+ * @returns
4
+ */ export function type() {
5
+ return 'type';
6
+ }
7
+
8
+ //# sourceMappingURL=type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/lib/type.ts"],"sourcesContent":["/**\n * Return the text `type`\n * @returns\n */\nexport function type(): string {\n return 'type';\n}\n"],"names":["type"],"rangeMappings":";;;;;","mappings":"AAAA;;;CAGC,GACD,OAAO,SAASA;IACd,OAAO;AACT"}
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@puq/type",
3
+ "displayName": "@rline/type",
4
+ "license": "Proprietary",
5
+ "version": "0.0.1",
6
+ "description": "Common model and utility types",
7
+ "author": {
8
+ "email": "robert.brightline@gmail.com",
9
+ "name": "Robert Brightline",
10
+ "url": "https://rbrightline.github.io"
11
+ },
12
+ "keywords": [
13
+ "type",
14
+ "model",
15
+ "type-utility"
16
+ ],
17
+ "repository": {
18
+ "directory": "type",
19
+ "url": "",
20
+ "type": "github"
21
+ },
22
+ "homepage": "https://rbrightline.github.io/puq/type",
23
+ "bugs": {
24
+ "email": "robert.brightline@gmail.com",
25
+ "url": "https://rbrightline.github.io"
26
+ },
27
+ "categories": [
28
+ "Other"
29
+ ],
30
+ "contributors": [
31
+ {
32
+ "email": "robert.brightline@gmail.com",
33
+ "name": "Robert Brightline",
34
+ "url": "https://rbrightline.github.io"
35
+ }
36
+ ],
37
+ "funding": [
38
+ "https://rbrightline.github.io/funding",
39
+ "https://rbrightline.github.io/donate",
40
+ "https://rbrightline.github.io/support"
41
+ ],
42
+ "icon": "./favicon.png",
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "type": "module",
47
+ "main": "./dist/index.js",
48
+ "module": "./dist/index.js",
49
+ "types": "./dist/index.d.ts",
50
+ "exports": {
51
+ "./package.json": "./package.json",
52
+ ".": {
53
+ "types": "./dist/index.d.ts",
54
+ "import": "./dist/index.js",
55
+ "default": "./dist/index.js"
56
+ }
57
+ },
58
+ "files": [
59
+ "dist",
60
+ "!**/*.tsbuildinfo"
61
+ ],
62
+ "nx": {
63
+ "sourceRoot": "libs/type/src",
64
+ "targets": {
65
+ "build": {
66
+ "executor": "@nx/js:swc",
67
+ "outputs": [
68
+ "{options.outputPath}"
69
+ ],
70
+ "options": {
71
+ "outputPath": "libs/type/dist",
72
+ "main": "libs/type/src/index.ts",
73
+ "tsConfig": "libs/type/tsconfig.lib.json",
74
+ "skipTypeCheck": true,
75
+ "stripLeadingPaths": true
76
+ }
77
+ }
78
+ }
79
+ },
80
+ "dependencies": {
81
+ "@swc/helpers": "~0.5.11"
82
+ }
83
+ }