@beautinique/frontend-types 1.0.0

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,35 @@
1
+ # @beautinique/frontend-types
2
+
3
+ Frontend types for Beautinique project.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @beautinique/frontend-types
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import {} from '@beautinique/frontend-types';
15
+ ```
16
+
17
+ ## Repository
18
+
19
+ https://github.com/Nageshwar1997/BQ-Packages
20
+
21
+ ## Homepage
22
+
23
+ https://github.com/Nageshwar1997/BQ-Packages
24
+
25
+ ## Issues
26
+
27
+ https://github.com/Nageshwar1997/BQ-Packages/issues
28
+
29
+ ## Author
30
+
31
+ Nageshwar Pawar
32
+
33
+ ## License
34
+
35
+ This package is licensed under the MIT License. See the root `LICENSE` file for details.
package/dist/index.cjs ADDED
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+
3
+ var sharedTypes = require('@beautinique/shared-types');
4
+
5
+
6
+
7
+ Object.keys(sharedTypes).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return sharedTypes[k]; }
11
+ });
12
+ });
13
+ //# sourceMappingURL=index.cjs.map
14
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}
@@ -0,0 +1,2 @@
1
+ export * from '@beautinique/shared-types';
2
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from '@beautinique/shared-types';
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,2BAA2B,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from '@beautinique/shared-types';
2
+ //# sourceMappingURL=index.js.map
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@beautinique/frontend-types",
3
+ "version": "1.0.0",
4
+ "description": "Frontend types for Beautinique project.",
5
+ "keywords": [
6
+ "frontend",
7
+ "types",
8
+ "beautinique"
9
+ ],
10
+ "author": "Nageshwar Pawar",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/Nageshwar1997/BQ-Packages.git",
15
+ "directory": "packages/frontend/types"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/Nageshwar1997/BQ-Packages/issues"
19
+ },
20
+ "homepage": "https://github.com/Nageshwar1997/BQ-Packages/tree/main/packages/frontend/types#readme",
21
+ "type": "module",
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "sideEffects": false,
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.ts",
32
+ "import": "./dist/index.js",
33
+ "require": "./dist/index.cjs",
34
+ "default": "./dist/index.js"
35
+ },
36
+ "./package.json": "./package.json"
37
+ },
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "postbuild": "node ../../../scripts/build-types/index.mjs",
41
+ "dev": "tsup --watch",
42
+ "lint": "eslint .",
43
+ "typecheck": "tsc --noEmit"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "engines": {
49
+ "node": ">=24"
50
+ },
51
+ "devDependencies": {
52
+ "typescript": "^6.0.3"
53
+ },
54
+ "peerDependencies": {
55
+ "@beautinique/shared-types": "^1.0.11"
56
+ }
57
+ }