sales-frontend-bridge 0.0.1

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/README.md ADDED
@@ -0,0 +1 @@
1
+ Hi
package/dist/index.cjs ADDED
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ // src/sample/index.ts
4
+ var hello = () => console.log("hello");
5
+
6
+ exports.hello = hello;
7
+ //# sourceMappingURL=index.cjs.map
8
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/sample/index.ts"],"names":[],"mappings":";;;AAAO,IAAM,KAAQ,GAAA,MAAM,OAAQ,CAAA,GAAA,CAAI,OAAO","file":"index.cjs","sourcesContent":["export const hello = () => console.log('hello');\n"]}
@@ -0,0 +1,3 @@
1
+ declare const hello: () => void;
2
+
3
+ export { hello };
@@ -0,0 +1,3 @@
1
+ declare const hello: () => void;
2
+
3
+ export { hello };
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // src/sample/index.ts
2
+ var hello = () => console.log("hello");
3
+
4
+ export { hello };
5
+ //# sourceMappingURL=index.js.map
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/sample/index.ts"],"names":[],"mappings":";AAAO,IAAM,KAAQ,GAAA,MAAM,OAAQ,CAAA,GAAA,CAAI,OAAO","file":"index.js","sourcesContent":["export const hello = () => console.log('hello');\n"]}
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "sales-frontend-bridge",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.ts",
19
+ "default": "./dist/index.cjs.js"
20
+ }
21
+ }
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^22.14.0",
25
+ "tsup": "^8.4.0",
26
+ "typescript": "5.8.2",
27
+ "sales-frontend-eslint-config-v8": "^0.0.0",
28
+ "sales-frontend-typescript-config": "0.0.0"
29
+ },
30
+ "scripts": {
31
+ "lint": "eslint . --max-warnings 0",
32
+ "generate:component": "turbo gen react-component",
33
+ "check-types": "tsc --noEmit",
34
+ "storybook": "tsup --watch",
35
+ "build": "tsup"
36
+ }
37
+ }