-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
126 lines (126 loc) · 3.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@league-of-foundry-developers/foundry-vtt-types",
"version": "12.331.1-beta",
"description": "TypeScript type definitions for Foundry VTT",
"type": "module",
"types": "./index.d.mts",
"scripts": {
"lint": "./node_modules/typescript/bin/tsc; eslint .",
"lint:fix": "eslint --fix .",
"lint:ci": "eslint .",
"eslint:report": "eslint --output-file eslint_report.json --format json .",
"test": "vitest --typecheck",
"typecheck": "./node_modules/typescript/bin/tsc",
"prepare": "is-ci || husky",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "https://github.com/League-of-Foundry-Developers/foundry-vtt-types"
},
"contributors": [
{
"name": "Kai Moschcau"
},
{
"name": "Johannes Loher"
},
{
"name": "Oskar Pfeifer-Bley"
},
{
"name": "FloRad"
},
{
"name": "NickEastNL"
},
{
"name": "BoltsJ"
},
{
"name": "JPMeehan"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/League-of-Foundry-Developers/foundry-vtt-types/issues"
},
"homepage": "https://github.com/League-of-Foundry-Developers/foundry-vtt-types",
"keywords": [
"foundry",
"foundry-vtt",
"types",
"typescript"
],
"dependencies": {
"@pixi/graphics-smooth": "^1.1.0",
"@pixi/particle-emitter": "^5.0.8",
"@types/jquery": "~3.5.22",
"@types/showdown": "~2.0.6",
"@types/simple-peer": "~9.11.1",
"@types/youtube": "~0.0.48",
"handlebars": "^4.7.8",
"patch-package": "^8.0.0",
"pixi.js": "^7.4.2",
"postinstall-postinstall": "^2.1.0",
"prosemirror-collab": "^1.3.1",
"prosemirror-commands": "^1.5.2",
"prosemirror-dropcursor": "^1.8.1",
"prosemirror-gapcursor": "^1.3.2",
"prosemirror-history": "^1.4.0",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.21.0",
"prosemirror-schema-list": "^1.3.0",
"prosemirror-state": "^1.4.3",
"prosemirror-tables": "^1.3.7",
"prosemirror-transform": "^1.9.0",
"prosemirror-view": "^1.33.6",
"socket.io-client": "^4.7.5",
"tinymce": "^6.8.3"
},
"devDependencies": {
"@fvtt-types/fvtt-types": "file:.",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^9.1.4",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"typescript": "~5.6",
"vitest": "^2.1.4"
},
"peerDependencies": {
"typescript": "^5.4"
},
"overrides": {
"@types/css-font-loading-module": "^0.0.12s"
},
"resolutions": {
"@types/earcut": "patch:@types/[email protected]#./patches/@types+earcut+2.1.4.patch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(d.mts|test-d.ts)": "eslint --fix",
"*.(js|json|yml)": "prettier --write"
},
"files": [
"index.d.mts",
"index-lenient.d.mts",
"src"
],
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}