-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "item_placeholder",
"version": "2.1.1",
"description": "Item Placeholder for Melvor Idle",
"homepage": "https://mod.io/g/melvoridle/m/item-placeholder",
"author": "Matthias Ramsauer",
"license": "LGPL-3.0-or-later",
"icon": "src/assets/icon.png",
"repository": {
"url": "https://github.com/beardeddragon5/melvor-idle-item-placeholders"
},
"bugs": {
"url": "https://github.com/beardeddragon5/melvor-idle-item-placeholders"
},
"type": "module",
"main": "src/setup.mjs",
"scripts": {
"format": "prettier --write src",
"lint": "eslint 'src/**/*.mts'",
"check": "npm run lint && prettier --check src",
"build": "npm run format && npm run lint && tsc && ./build.sh"
},
"engines": {
"node": "18.12.1",
"npm": "9.2.0"
},
"engineStrict": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}