-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 887 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 887 Bytes
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
{
"name": "@rpgmadesimple/debugger",
"version": "0.0.0",
"type": "module",
"types": "dist/types/index.d.ts",
"main": "dist/module.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"lint": "eslint . && prettier --check .",
"fix": "eslint . --fix && prettier --write .",
"test:unit": "vitest run",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@rpgmadesimple/foundry-vite-plugin": "workspace:*",
"@rpgmadesimple/tsconfig": "workspace:*",
"@rpgmadesimple/utils": "workspace:*",
"@vitest/coverage-v8": "3.1.3",
"fvtt-types": "github:League-of-Foundry-Developers/foundry-vtt-types#main",
"jsdom": "^26.1.0",
"sass": "^1.97.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"ts-runtime-checks": "^0.6.3",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}