-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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
{
"private": true,
"name": "foreground-drawings",
"version": "0.2.3",
"description": "A module for Foundry Virtual Tabletop that allows users to create drawings in the foreground while keeping the ability to also draw in the background.",
"license": "MIT",
"homepage": "https://github.com/ghost-fvtt/foreground-drawings",
"repository": {
"type": "git",
"url": "git+https://github.com/ghost-fvtt/foreground-drawings.git"
},
"bugs": {
"url": "https://github.com/ghost-fvtt/foreground-drawings/issues"
},
"contributors": [
{
"name": "Johannes Loher",
"email": "[email protected]",
"discord": "ghost#2000"
}
],
"scripts": {
"build": "run-s clean:files build:files",
"build:files": "rollup -c",
"watch": "rollup -c -w",
"link-package": "node ./tools/link-package.mjs",
"clean": "run-p clean:files clean:link",
"clean:files": "rimraf dist",
"clean:link": "node ./tools/link-package.mjs --clean",
"lint": "eslint --ext .ts,.js,.mjs .",
"lint:fix": "eslint --ext .ts,.js,.mjs --fix .",
"format": "prettier --write \"./**/*.(ts|js|mjs|json|yml)\"",
"typecheck": "tsc --noEmit",
"postinstall": "husky install",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@guanghechen/rollup-plugin-copy": "6.0.7",
"@league-of-foundry-developers/foundry-vtt-types": "9.280.1",
"@rollup/plugin-typescript": "12.1.2",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-run-all2": "7.0.2",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"rollup": "4.35.0",
"standard-version": "9.5.0",
"stringify-package": "1.0.1",
"tslib": "2.8.1",
"typescript": "5.8.2",
"yargs": "17.7.2"
},
"lint-staged": {
"*.(ts|js|mjs)": "eslint --fix",
"*.(json|yml)": "prettier --write"
}
}