@wix/pricing-plans 1.0.109 → 1.0.111

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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
package/meta/package.json CHANGED
@@ -1,7 +1,3 @@
1
1
  {
2
- "sideEffects": false,
3
- "module": "../build/es/meta.js",
4
- "main": "../build/cjs/meta.js",
5
- "typings": "../build/cjs/meta.d.ts",
6
- "typesBundle": "../type-bundles/meta.bundle.d.ts"
2
+ "main": "../build/cjs/meta.js"
7
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/pricing-plans",
3
- "version": "1.0.109",
3
+ "version": "1.0.111",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -9,31 +9,39 @@
9
9
  "wix-sdk-module=backend,page,public"
10
10
  ],
11
11
  "sideEffects": false,
12
- "module": "build/es/index.js",
13
- "main": "build/cjs/index.js",
14
- "typings": "./build/cjs/index.d.ts",
15
- "typesBundle": "./type-bundles/index.bundle.d.ts",
12
+ "main": "./build/cjs/index.js",
13
+ "types": "./build/es/index.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "import": "./build/es/index.js",
17
+ "require": "./build/cjs/index.js",
18
+ "types": "./build/es/index.d.ts"
19
+ },
20
+ "./meta": {
21
+ "import": "./build/es/meta.js",
22
+ "require": "./build/cjs/meta.js",
23
+ "types": "./build/es/meta.d.ts"
24
+ },
25
+ "./context": {
26
+ "import": "./build/es/context.js",
27
+ "require": "./build/cjs/context.js",
28
+ "types": "./build/es/context.d.ts"
29
+ }
30
+ },
16
31
  "files": [
17
32
  "build",
18
- "frontend/package.json",
19
33
  "meta",
20
- "context",
21
- "type-bundles"
34
+ "service-plugins"
22
35
  ],
23
36
  "dependencies": {
24
- "@wix/pricing-plans_orders": "1.0.51",
25
- "@wix/pricing-plans_plans": "1.0.51"
37
+ "@wix/pricing-plans_orders": "1.0.53",
38
+ "@wix/pricing-plans_plans": "1.0.52"
26
39
  },
27
40
  "devDependencies": {
28
- "glob": "^10.4.1",
29
- "rollup": "^4.18.0",
30
- "rollup-plugin-dts": "^6.1.1",
31
41
  "typescript": "^5.3.2"
32
42
  },
33
43
  "scripts": {
34
- "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles && npm run build:validate-dts",
35
- "build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
36
- "build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
44
+ "build": "tsc -b tsconfig.json tsconfig.esm.json",
37
45
  "test": ":"
38
46
  },
39
47
  "wix": {
@@ -47,5 +55,5 @@
47
55
  "fqdn": ""
48
56
  }
49
57
  },
50
- "falconPackageHash": "0fc7af022ecd98a1330494f885c5f5630b281c927aceb500ce78e9ba"
58
+ "falconPackageHash": "2e07dce6d83617cdc576fd0a2bf58831c1055b87c2fec654e29756a4"
51
59
  }
@@ -1,7 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "../build/es/context.js",
4
- "main": "../build/cjs/context.js",
5
- "typings": "../build/cjs/context.d.ts",
6
- "typesBundle": "../type-bundles/context.bundle.d.ts"
7
- }