@deframe-sdk/components 0.1.10 → 0.1.12
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.d.mts +91 -113
- package/dist/index.d.ts +91 -113
- package/dist/index.js +672 -747
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +674 -745
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1041 -934
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deframe-sdk/components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"packageManager": "pnpm@9.0.0",
|
|
5
5
|
"description": "Deframe SDK React component library",
|
|
6
6
|
"engines": {
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
"build": "next build",
|
|
27
27
|
"build:css": "postcss ./src/styles/globals.css -o ./dist/styles.css --config ./postcss.config.build.mjs --minify",
|
|
28
28
|
"build:lib": "tsup && npm run build:css",
|
|
29
|
+
"check:widget-vars": "node ./scripts/check-widget-vars.mjs",
|
|
30
|
+
"migrate:widget-contract": "node ./scripts/migrate-widget-contract.mjs --write",
|
|
31
|
+
"migrate:widget-contract:dry": "node ./scripts/migrate-widget-contract.mjs",
|
|
29
32
|
"start": "next start",
|
|
30
33
|
"lint": "eslint",
|
|
31
34
|
"test": "echo \"No tests!\"",
|