slicejs-web-framework 3.3.2 → 3.3.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.
Files changed (2) hide show
  1. package/api/index.js +1 -1
  2. package/package.json +5 -1
package/api/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // api/index.js - Seguridad automática sin configuración
2
- import express from './framework/express.js';
2
+ import express from 'slicejs-web-framework/api/framework/express.js';
3
3
  import path from 'path';
4
4
  import fs from 'fs';
5
5
  import { fileURLToPath } from 'url';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-web-framework",
3
- "version": "3.3.2",
3
+ "version": "3.3.3",
4
4
  "description": "",
5
5
  "engines": {
6
6
  "node": ">=20"
@@ -23,6 +23,10 @@
23
23
  "author": "",
24
24
  "license": "ISC",
25
25
  "type": "module",
26
+ "exports": {
27
+ ".": "./Slice/Slice.js",
28
+ "./api/framework/express.js": "./api/framework/express.js"
29
+ },
26
30
  "types": "./types/index.d.ts",
27
31
  "dependencies": {
28
32
  "express": "^4.19.2"