@pronto-tools-and-more/components 6.14.0 → 6.16.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,18 +1,39 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pronto-tools-and-more/components",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.16.0",
|
4
4
|
"description": "",
|
5
|
-
"main": "
|
5
|
+
"main": "dist/main.js",
|
6
|
+
"types": "dist/main.d.ts",
|
6
7
|
"type": "module",
|
7
8
|
"scripts": {
|
8
|
-
"
|
9
|
-
"
|
9
|
+
"type-check": "tsc",
|
10
|
+
"test": "node --unhandled-rejections=warn --experimental-vm-modules ./node_modules/jest/bin/jest.js --detectOpenHandles --forceExit",
|
11
|
+
"test:watch": "node --unhandled-rejections=warn --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch",
|
12
|
+
"build": "esbuild src/main.ts --bundle --format=esm --outfile=dist/main.js && rm tsconfig.tsbuildinfo && npx tsc -b",
|
13
|
+
"build:watch": "esbuild src/main.ts --bundle --format=esm --outfile=dist/main.js --watch"
|
10
14
|
},
|
11
15
|
"keywords": [],
|
12
16
|
"author": "",
|
13
17
|
"license": "MIT",
|
14
18
|
"devDependencies": {
|
15
19
|
"@types/node": "^22.5.0",
|
16
|
-
"@types/react": "^18.3.4"
|
20
|
+
"@types/react": "^18.3.4",
|
21
|
+
"esbuild": "^0.24.0",
|
22
|
+
"ts-jest": "^29.2.5"
|
23
|
+
},
|
24
|
+
"jest": {
|
25
|
+
"injectGlobals": false,
|
26
|
+
"extensionsToTreatAsEsm": [
|
27
|
+
".ts"
|
28
|
+
],
|
29
|
+
"moduleNameMapper": {},
|
30
|
+
"transform": {
|
31
|
+
"^.+\\.tsx?$": [
|
32
|
+
"ts-jest",
|
33
|
+
{
|
34
|
+
"useESM": true
|
35
|
+
}
|
36
|
+
]
|
37
|
+
}
|
17
38
|
}
|
18
39
|
}
|
package/src/main.ts
CHANGED
package/src/parts/Main/Main.tsx
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from "../Components/Components.tsx";
|