@r3b2p/uilib 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/dist/index.cjs ADDED
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@r3b2p/uilib",
3
+ "version": "1.0.0",
4
+ "description": "Shared ui lib for erp system (manufacturing industry group)",
5
+ "keywords": [
6
+ "r3b2p",
7
+ "lib"
8
+ ],
9
+ "homepage": "https://github.com/deveramartin/erp-shared#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/deveramartin/erp-shared/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+ssh://git@github.com/deveramartin/erp-shared.git"
16
+ },
17
+ "license": "UNLICENSED",
18
+ "author": "deveramartin",
19
+ "type": "module",
20
+ "main": "src/index.ts",
21
+ "scripts": {
22
+ "build": "tsup"
23
+ },
24
+ "devDependencies": {
25
+ "tsup": "^8.5.1",
26
+ "typescript": "^6.0.3"
27
+ },
28
+ "main": "dist/index.cjs",
29
+ "module": "dist/index.js",
30
+ "types": "dist/index.d.ts",
31
+ "exports": {
32
+ ".": {
33
+ "import": "./dist/index.js",
34
+ "require": "./dist/index.cjs",
35
+ "types": "./dist/index.d.ts"
36
+ }
37
+ },
38
+ "files": [
39
+ "dist"
40
+ ]
41
+ }