-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.58 KB
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "fvtt-module-forge-vtt",
"version": "1.14.10",
"private": true,
"engines": {
"node": ">=12.18.4 <=22",
"npm": "~6.14.6"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"format": "prettier --write --config .prettierrc.yml --ignore-path .prettierignore --ignore-unknown",
"lint-fix": "eslint --config .eslintrc-staged.yml --ext .js,.mjs --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"description": "This module allows players to browse their Forge Assets Library from their local games, if needed. This module is automatically enabled for users on The Forge and is therefore not required when running your games on The Forge website. To use it, you will need to generate an API Key from your account page.",
"main": "src/index.mjs",
"directories": {
"lib": "lib"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"npm run lint-fix",
"npm run format"
],
"*.css": [
"csslint --quiet --format=compact",
"npm run format"
],
"*.{json,md,sh,yml}": [
"npm run format"
]
},
"author": "KaKaRoTo (forge-vtt.com)",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-diff": "^2.0.3",
"eslint-plugin-jsdoc": "^50.6.11",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"vite": "^6.3.4"
}
}