2020-10-29 16:18:38 +01:00
|
|
|
{
|
2020-12-23 17:09:02 +01:00
|
|
|
"private": true,
|
2021-02-07 12:38:45 +01:00
|
|
|
"name": "dungeonslayers4",
|
2020-12-31 05:02:38 +01:00
|
|
|
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
|
2022-05-23 10:05:09 +02:00
|
|
|
"version": "1.14.2",
|
2021-06-26 22:02:00 +02:00
|
|
|
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
|
2020-12-31 05:02:38 +01:00
|
|
|
"homepage": "https://git.f3l.de/dungeonslayers/ds4",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.f3l.de/dungeonslayers/ds4"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://git.f3l.de/dungeonslayers/ds4/-/issues"
|
|
|
|
},
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Johannes Loher",
|
|
|
|
"email": "johannes.loher@fg4f.de"
|
|
|
|
},
|
|
|
|
{
|
2021-01-03 16:38:33 +01:00
|
|
|
"name": "Gesina Schwalbe",
|
|
|
|
"email": "gesina.schwalbe@pheerai.de"
|
2020-12-31 05:02:38 +01:00
|
|
|
},
|
|
|
|
{
|
2021-01-03 16:38:33 +01:00
|
|
|
"name": "Oliver Rümpelein",
|
|
|
|
"email": "foundryvtt@pheerai.de"
|
2021-01-10 21:51:47 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Siegfried Krug",
|
|
|
|
"email": "foundryvtt@asdil1991.de"
|
2021-06-26 22:02:00 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Max Tharr"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Sascha Martens"
|
2020-12-31 05:02:38 +01:00
|
|
|
}
|
|
|
|
],
|
2021-11-30 17:30:25 +01:00
|
|
|
"type": "module",
|
2020-12-23 17:09:02 +01:00
|
|
|
"scripts": {
|
2021-11-30 17:30:25 +01:00
|
|
|
"build": "run-s clean:files build:files",
|
|
|
|
"build:files": "rollup -c",
|
|
|
|
"watch": "rollup -c -w",
|
|
|
|
"link-package": "node ./tools/link-package.js",
|
|
|
|
"clean": "run-p clean:files clean:link",
|
|
|
|
"clean:files": "rimraf dist",
|
|
|
|
"clean:link": "node ./tools/link-package.js --clean",
|
|
|
|
"lint": "eslint --ext .ts,.js,.cjs,.mjs .",
|
|
|
|
"lint:fix": "eslint --ext .ts,.js,.cjs,.mjs --fix .",
|
2021-02-11 13:42:38 +01:00
|
|
|
"test": "jest",
|
2021-03-13 02:27:09 +01:00
|
|
|
"test:watch": "jest --watch",
|
2021-02-11 13:42:38 +01:00
|
|
|
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
|
2021-11-30 17:30:25 +01:00
|
|
|
"format": "prettier --write \"./**/*.(ts|js|cjs|mjs|json|scss|yml)\"",
|
2021-08-19 04:01:55 +02:00
|
|
|
"typecheck": "tsc --noEmit",
|
2022-04-21 22:43:16 +02:00
|
|
|
"typecheck:watch": "tsc --noEmit --watch",
|
2021-11-30 17:30:25 +01:00
|
|
|
"bump-version": "node ./tools/bump-version.js",
|
|
|
|
"convert-packs-to-json": "node ./tools/convert-packs-to-json.js",
|
2021-09-14 17:10:23 +02:00
|
|
|
"postinstall": "husky install",
|
2021-11-30 17:30:25 +01:00
|
|
|
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
|
2020-12-23 17:09:02 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-16 13:18:55 +02:00
|
|
|
"@commitlint/cli": "17.0.0",
|
|
|
|
"@commitlint/config-conventional": "17.0.0",
|
2022-04-27 09:17:36 +02:00
|
|
|
"@guanghechen/rollup-plugin-copy": "1.9.4",
|
2022-05-15 13:16:27 +02:00
|
|
|
"@league-of-foundry-developers/foundry-vtt-types": "9.268.2",
|
2022-04-18 17:15:35 +02:00
|
|
|
"@pixi/constants": "6.2.1",
|
|
|
|
"@pixi/core": "6.2.1",
|
|
|
|
"@pixi/display": "6.2.1",
|
|
|
|
"@pixi/graphics": "6.2.1",
|
|
|
|
"@pixi/math": "6.2.1",
|
|
|
|
"@pixi/runner": "6.2.1",
|
|
|
|
"@pixi/settings": "6.2.1",
|
|
|
|
"@pixi/utils": "6.2.1",
|
2022-04-13 21:14:39 +02:00
|
|
|
"@rollup/plugin-typescript": "8.3.2",
|
2022-03-16 16:14:18 +01:00
|
|
|
"@seald-io/nedb": "3.0.0",
|
2022-05-21 18:14:55 +02:00
|
|
|
"@swc/core": "1.2.189",
|
2021-09-21 21:17:25 +02:00
|
|
|
"@types/fs-extra": "9.0.13",
|
2022-05-12 01:18:28 +02:00
|
|
|
"@types/jest": "27.5.1",
|
2022-05-23 20:14:49 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.26.0",
|
|
|
|
"@typescript-eslint/parser": "5.26.0",
|
2021-12-25 20:15:39 +01:00
|
|
|
"conventional-changelog-cli": "2.2.2",
|
2021-12-29 21:15:24 +01:00
|
|
|
"conventional-changelog-conventionalcommits": "4.6.3",
|
2022-05-21 01:16:02 +02:00
|
|
|
"eslint": "8.16.0",
|
2022-03-02 22:14:24 +01:00
|
|
|
"eslint-config-prettier": "8.5.0",
|
2022-05-15 00:19:50 +02:00
|
|
|
"eslint-plugin-jest": "26.2.2",
|
2021-08-30 22:17:24 +02:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2022-04-16 21:16:37 +02:00
|
|
|
"fs-extra": "10.1.0",
|
2022-05-09 12:17:44 +02:00
|
|
|
"husky": "8.0.1",
|
2022-05-06 13:17:55 +02:00
|
|
|
"jest": "28.1.0",
|
2022-04-21 00:17:10 +02:00
|
|
|
"jest-junit": "13.2.0",
|
2022-04-26 18:17:30 +02:00
|
|
|
"lint-staged": "12.4.1",
|
2021-11-30 17:30:25 +01:00
|
|
|
"npm-run-all": "4.1.5",
|
2022-04-02 19:16:40 +02:00
|
|
|
"prettier": "2.6.2",
|
2021-11-30 17:30:25 +01:00
|
|
|
"rimraf": "3.0.2",
|
2022-05-19 20:15:01 +02:00
|
|
|
"rollup": "2.74.1",
|
2022-01-14 02:15:03 +01:00
|
|
|
"rollup-plugin-styles": "4.0.0",
|
2022-04-21 22:43:16 +02:00
|
|
|
"rollup-plugin-swc3": "0.3.0",
|
2022-05-21 00:15:04 +02:00
|
|
|
"sass": "1.52.1",
|
2022-04-12 20:14:33 +02:00
|
|
|
"semver": "7.3.7",
|
2022-05-24 07:14:46 +02:00
|
|
|
"ts-jest": "28.0.3",
|
2022-04-22 03:17:16 +02:00
|
|
|
"tslib": "2.4.0",
|
2022-04-28 23:17:28 +02:00
|
|
|
"typescript": "4.6.4",
|
2022-05-16 04:20:36 +02:00
|
|
|
"yargs": "17.5.1"
|
2020-12-23 18:23:26 +01:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2021-11-30 17:30:25 +01:00
|
|
|
"*.(ts|js|cjs|mjs)": "eslint --cache --fix",
|
2021-11-30 02:29:45 +01:00
|
|
|
"*.(json|scss|yml)": "prettier --write"
|
2022-03-20 17:58:21 +01:00
|
|
|
},
|
2022-05-19 02:16:40 +02:00
|
|
|
"packageManager": "yarn@3.2.1"
|
2020-10-29 16:18:38 +01:00
|
|
|
}
|