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 +2 -0
- package/.eslintrc +26 -0
- package/README.md +2 -0
- package/dist/api.d.ts +6 -0
- package/package.json +29 -0
- package/src/games/mir4/api.ts +6 -0
- package/tsconfig.json +10 -0
package/.eslintignore
ADDED
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
package/dist/api.d.ts
ADDED
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
|
+
}
|