-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
{
"name": "fvtt-errors-and-echoes",
"version": "0.2.1",
"description": "Anonymous error reporting for Foundry VTT modules",
"main": "dist/module.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "rollup -c -w",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:run": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:coverage:junit": "vitest run --coverage --reporter=junit --reporter=default",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"*.{js,json,md}\"",
"validate": "npm run lint && npm run format:check && npm run typecheck && npm run test && npm run build",
"prepare": "npm run build"
},
"keywords": [
"foundry",
"foundry-vtt",
"error-reporting",
"module"
],
"author": "David Raynes <rayners@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rayners/fvtt-errors-and-echoes.git"
},
"bugs": {
"url": "https://github.com/rayners/fvtt-errors-and-echoes/issues"
},
"homepage": "https://github.com/rayners/fvtt-errors-and-echoes#readme",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@rayners/foundry-dev-tools": "^1.2.0",
"@rayners/foundry-test-utils": "^1.0.0",
"@types/node": "^20.10.4",
"@vitest/ui": "^3.1.0",
"rollup": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.44.1",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"tslib": "^2.8.1"
}
}