atlas-crm-api-client 1.1.2 → 1.1.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/lib/cjs/index.d.cts +2 -0
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "atlas-crm-api-client",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "A template for creating npm packages using TypeScript and VSCode",
|
|
5
5
|
"main": "./lib/cjs/index.cjs",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "vitest run --coverage",
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
19
|
"build:lib": "vite build",
|
|
20
|
-
"build:types": "tsc --project tsconfig.build.dts.json"
|
|
20
|
+
"build:types": "tsc --project tsconfig.build.dts.json && node ./scripts/copy-cjs-types.js"
|
|
21
21
|
},
|
|
22
22
|
"type": "module",
|
|
23
23
|
"repository": {
|
|
@@ -130,7 +130,10 @@
|
|
|
130
130
|
".": {
|
|
131
131
|
"types": "./lib/esm/index.d.ts",
|
|
132
132
|
"import": "./lib/esm/index.js",
|
|
133
|
-
"require":
|
|
133
|
+
"require": {
|
|
134
|
+
"types": "./lib/cjs/index.d.cts",
|
|
135
|
+
"default": "./lib/cjs/index.cjs"
|
|
136
|
+
}
|
|
134
137
|
}
|
|
135
138
|
}
|
|
136
139
|
}
|