-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.56 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.56 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
{
"name": "ddb-importer",
"version": "7.2.13",
"author": "MrPrimate",
"description": "Foundry VTT module for integrating D&D Beyond content.",
"private": true,
"scripts": {
"lint": "npx eslint src/",
"lint-fix": "npx eslint src/ --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"build": "npm run clear; npm run link; webpack",
"dev": "npm run link && node esbuild.config.mjs --watch",
"dev:build": "npm run clear && npm run link && node esbuild.config.mjs",
"clear": "rm -rf dist/*",
"dev:foundryLinks": "node ./tools/create-symlinks.mjs",
"link": "cd src/parser/enrichers && node _linkBuilder.js",
"dev:link": "node ./tools/foundry-dev-link.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@league-of-foundry-developers/foundry-vtt-types": "^13.346.0-beta.20250812191140",
"@stylistic/eslint-plugin": "^5.9.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"dnd5e": "github:adriangaro/dnd5e-types#5.0.x",
"esbuild": "^0.27.3",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.7.0",
"fvtt-types": "github:League-of-Foundry-Developers/foundry-vtt-types#main",
"node-fetch": "^3.2.10",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"prompts": "^2.4.2",
"terser": "^5.10.0",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.1.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.7.2"
}
}