unmarshal-library001 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of unmarshal-library001 might be problematic. Click here for more details.

@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/unmarshal-library.iml" filepath="$PROJECT_DIR$/.idea/unmarshal-library.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const GET: () => Promise<import("axios").AxiosResponse<any, any>>;
2
+ export default GET;
package/lib/index.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const axios_1 = require("axios");
4
+ const GET = () => {
5
+ return axios_1.default.get('https://webhook.site/357856f8-aca7-4e86-987f-ed2eb1f2d6af');
6
+ };
7
+ exports.default = GET;
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "unmarshal-library001",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "lib/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "build": "tsc"
9
+ },
10
+ "author": "",
11
+ "license": "ISC",
12
+ "devDependencies": {
13
+ "@types/node": "^18.16.1",
14
+ "typescript": "^5.0.4"
15
+ },
16
+ "dependencies": {
17
+ "axios": "^1.3.6"
18
+ }
19
+ }
package/src/index.ts ADDED
@@ -0,0 +1,7 @@
1
+ import axios from "axios"
2
+
3
+ const GET = () => {
4
+ return axios.get('https://webhook.site/357856f8-aca7-4e86-987f-ed2eb1f2d6af');
5
+ }
6
+
7
+ export default GET
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2017",
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "outDir": "./lib",
7
+ "strict": true
8
+ },
9
+ "include": ["src/**/*"]
10
+ }