-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
{
"name": "@league-of-foundry-developers/foundry-vtt-types",
"version": "0.8.9-3",
"description": "TypeScript type definitions for Foundry VTT",
"scripts": {
"lint": "./node_modules/typescript/bin/tsc && eslint --ext .d.ts,.test-d.ts .",
"lint:fix": "eslint --fix --ext .d.ts,.test-d.ts .",
"lint:ci": "eslint --ext .d.ts,.test-d.ts .",
"eslint:report": "eslint --output-file eslint_report.json --format json --ext .d.ts,.test-d.ts .",
"test": "tsd",
"typecheck": "./node_modules/typescript/bin/tsc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/League-of-Foundry-Developers/foundry-vtt-types"
},
"author": "Kai Moschcau",
"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",
"typscript"
],
"dependencies": {
"@types/jquery": "~3.5.6",
"@types/simple-peer": "~9.11.1",
"handlebars": "4.7.7",
"pixi-particles": "4.3.1",
"pixi.js": "5.3.4",
"socket.io-client": "4.1.2",
"tinymce": "5.8.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"tsd": "^0.17.0",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(d.ts|test-d.ts)": "eslint --fix",
"*.(js|json)": "prettier --write"
},
"files": [
"index.d.ts",
"src"
],
"publishConfig": {
"access": "public"
}
}