alangregory-interfaces 1.0.0

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/.eslintignore ADDED
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ dist
package/.eslintrc ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "plugins": [
5
+ "@typescript-eslint"
6
+ ],
7
+ "rules": {
8
+ "@typescript-eslint/naming-convention": [
9
+ "warn",
10
+ {
11
+ "selector": "objectLiteralProperty",
12
+ "format": [
13
+ "camelCase",
14
+ "snake_case"
15
+ ]
16
+ }
17
+ ],
18
+ "@typescript-eslint/no-var-requires": "off",
19
+ "semi": "warn"
20
+ },
21
+ "extends": [
22
+ "eslint:recommended",
23
+ "plugin:@typescript-eslint/eslint-recommended",
24
+ "plugin:@typescript-eslint/recommended"
25
+ ]
26
+ }
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # alangregory-interfaces
2
+ typescript interface definitions
package/dist/api.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ export interface LauncherInforResponse {
2
+ Code: string;
3
+ LauncherVersiin: number;
4
+ FileData: string;
5
+ FileSize: number;
6
+ }
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "alangregory-interfaces",
3
+ "version": "1.0.0",
4
+ "description": "typescript interface definitions",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "app:build": "tsc",
9
+ "lint": "eslint . --ext .ts,.tsx"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/alangregory/alangregory-interfaces.git"
14
+ },
15
+ "author": "",
16
+ "license": "ISC",
17
+ "bugs": {
18
+ "url": "https://github.com/alangregory/alangregory-interfaces/issues"
19
+ },
20
+ "homepage": "https://github.com/alangregory/alangregory-interfaces#readme",
21
+ "devDependencies": {
22
+ "@types/node": "^18.11.9",
23
+ "@typescript-eslint/eslint-plugin": "^5.44.0",
24
+ "@typescript-eslint/parser": "^5.44.0",
25
+ "eslint": "^8.28.0",
26
+ "ts-node": "^10.9.1",
27
+ "typescript": "^4.9.3"
28
+ }
29
+ }
@@ -0,0 +1,6 @@
1
+ export interface LauncherInforResponse {
2
+ Code: string,
3
+ LauncherVersiin: number,
4
+ FileData: string,
5
+ FileSize: number
6
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "compilerOptions": {
3
+ "declaration": true,
4
+ "outDir": "dist",
5
+ "emitDeclarationOnly": true
6
+ },
7
+ "include": [
8
+ "src"
9
+ ]
10
+ }