@lucablockltd/ultimate-packaging 1.0.1 → 1.0.3
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/LICENSE +8 -0
- package/README.md +1 -1019
- package/dist/index.js +404 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +404 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -15
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucablockltd/ultimate-packaging",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Ultimate packaging library for React and Next.js",
|
|
3
|
+
"version": "1.0.3",
|
|
5
4
|
"main": "./dist/index.cjs",
|
|
6
5
|
"module": "./dist/index.mjs",
|
|
7
6
|
"types": "./dist/index.d.ts",
|
|
@@ -24,10 +23,6 @@
|
|
|
24
23
|
"publishConfig": {
|
|
25
24
|
"access": "public"
|
|
26
25
|
},
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/Omadar/ULTIMATE-PACKAGING.git"
|
|
30
|
-
},
|
|
31
26
|
"scripts": {
|
|
32
27
|
"build": "tsup",
|
|
33
28
|
"dev": "tsup --watch",
|
|
@@ -35,8 +30,7 @@
|
|
|
35
30
|
"lint": "eslint src/",
|
|
36
31
|
"typecheck": "tsc --noEmit",
|
|
37
32
|
"clean": "rm -rf dist",
|
|
38
|
-
"demo": "npm -C demo run dev"
|
|
39
|
-
"publish-package-to-github": "yarn build && git add dist demo/dist && git commit -m 'chore: rebuild dist' && git push"
|
|
33
|
+
"demo": "npm -C demo run dev"
|
|
40
34
|
},
|
|
41
35
|
"peerDependencies": {
|
|
42
36
|
"react": ">=18.0.0",
|
|
@@ -51,13 +45,7 @@
|
|
|
51
45
|
"typescript": "^5.7.0"
|
|
52
46
|
},
|
|
53
47
|
"sideEffects": false,
|
|
54
|
-
"license": "
|
|
55
|
-
"keywords": [
|
|
56
|
-
"react",
|
|
57
|
-
"nextjs",
|
|
58
|
-
"typescript",
|
|
59
|
-
"components"
|
|
60
|
-
],
|
|
48
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
61
49
|
"dependencies": {
|
|
62
50
|
"jspdf": "^4.2.1"
|
|
63
51
|
}
|