recurrente-js 1.0.5 → 1.0.6

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 (1) hide show
  1. package/package.json +18 -10
package/package.json CHANGED
@@ -1,15 +1,22 @@
1
1
  {
2
2
  "name": "recurrente-js",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "./dist/index.js",
5
- "types": "./dist/globals.d.ts",
5
+ "types": "./dist/index.d.ts",
6
6
  "exports": {
7
- ".": "./dist/index.js",
8
- "./webhooks": "./dist/webhooks.js"
7
+ ".": {
8
+ "import": "./dist/index.js",
9
+ "require": "./dist/index.js",
10
+ "types": "./dist/index.d.ts"
11
+ },
12
+ "./webhooks": {
13
+ "import": "./dist/webhooks.js",
14
+ "require": "./dist/webhooks.js",
15
+ "types": "./dist/webhooks.d.ts"
16
+ }
9
17
  },
10
18
  "files": [
11
- "dist/**/*",
12
- "src/**/*.d.ts"
19
+ "dist/**/*"
13
20
  ],
14
21
  "scripts": {
15
22
  "test": "jest",
@@ -17,10 +24,9 @@
17
24
  "clean": "gts clean",
18
25
  "compile": "tsc",
19
26
  "fix": "gts fix",
20
- "prepare": "npm.cmd run compile",
21
- "pretest": "npm.cmd run compile",
22
- "posttest": "npm.cmd run lint",
23
- "dev": "nodemon -w *.ts -e ts -x ts-node --files -H -T ./src/index.ts",
27
+ "prepare": "npm run compile",
28
+ "pretest": "npm run compile",
29
+ "posttest": "npm run lint",
24
30
  "context": "ts-node scripts/generate-context.cts"
25
31
  },
26
32
  "author": "Axel Aguilar",
@@ -42,3 +48,5 @@
42
48
  "svix": "^1.34.0"
43
49
  }
44
50
  }
51
+
52
+