Skip to content

Commit 13d9ed0

Browse files
committed
add import from packwiz & modrinth fetching
1 parent cb48f4f commit 13d9ed0

13 files changed

+871
-509
lines changed

.eslintrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
32
"parser": "@typescript-eslint/parser",
4-
"plugins": ["@typescript-eslint"],
3+
"plugins": ["@typescript-eslint", "require-extensions"],
4+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:require-extensions/recommended"],
55
"root": true
66
}

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,6 @@ dist
127127
.yarn/unplugged
128128
.yarn/build-state.yml
129129
.yarn/install-state.gz
130-
.pnp.*
130+
.pnp.*
131+
132+
.env

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -36,24 +36,27 @@
3636
"@types/minimatch": "^3.0.5",
3737
"archiver": "^5.3.1",
3838
"arg": "^5.0.2",
39-
"axios": "^1.2.0",
39+
"axios": "^1.6.7",
4040
"chalk": "^5.0.1",
4141
"command-line-usage": "^6.1.3",
42+
"dotenv": "^16.4.1",
4243
"form-data": "^4.0.0",
4344
"fs-extra": "^10.1.0",
4445
"minimatch": "^5.1.0",
4546
"rimraf": "^3.0.2",
47+
"toml": "^3.0.0",
4648
"typescript": "^4.8.2",
4749
"yaml": "^2.1.3"
4850
},
4951
"devDependencies": {
5052
"@types/archiver": "^5.3.1",
5153
"@types/command-line-usage": "^5.0.2",
52-
"@types/node": "^17.0.45",
54+
"@types/node": "^20.11.10",
5355
"@types/rimraf": "^3.0.2",
5456
"@typescript-eslint/eslint-plugin": "^5.44.0",
5557
"@typescript-eslint/parser": "^5.44.0",
5658
"eslint": "^8.23.0",
59+
"eslint-plugin-require-extensions": "^0.1.3",
5760
"prettier": "^2.7.1",
5861
"ts-node": "^10.9.1"
5962
}

0 commit comments

Comments
 (0)