2020-10-29 16:18:38 +01:00
|
|
|
{
|
2023-07-10 22:23:13 +02:00
|
|
|
"private": true,
|
|
|
|
"name": "dungeonslayers4",
|
|
|
|
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
|
2023-09-16 11:59:34 +02:00
|
|
|
"version": "1.21.1",
|
2023-07-10 22:23:13 +02:00
|
|
|
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
|
|
|
|
"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"
|
2020-12-31 05:02:38 +01:00
|
|
|
},
|
2023-07-10 22:23:13 +02:00
|
|
|
{
|
|
|
|
"name": "Gesina Schwalbe",
|
|
|
|
"email": "gesina.schwalbe@pheerai.de"
|
2020-12-31 05:02:38 +01:00
|
|
|
},
|
2023-07-10 22:23:13 +02:00
|
|
|
{
|
|
|
|
"name": "Oliver Rümpelein",
|
|
|
|
"email": "foundryvtt@pheerai.de"
|
2020-12-23 17:09:02 +01:00
|
|
|
},
|
2023-07-10 22:23:13 +02:00
|
|
|
{
|
|
|
|
"name": "Siegfried Krug",
|
|
|
|
"email": "foundryvtt@asdil1991.de"
|
2020-12-23 18:23:26 +01:00
|
|
|
},
|
2023-07-10 22:23:13 +02:00
|
|
|
{
|
|
|
|
"name": "Max Tharr"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Sascha Martens"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"build": "run-s clean:files build:files",
|
|
|
|
"build:files": "run-p build:rollup build:packs",
|
|
|
|
"build:rollup": "rollup -c",
|
|
|
|
"build:packs": "./tools/packs.sh pack",
|
|
|
|
"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": "pnpm eslint",
|
|
|
|
"lint:fix": "pnpm eslint --fix",
|
|
|
|
"eslint": "eslint --ext .ts,.js,.cjs,.mjs .",
|
|
|
|
"format": "pnpm prettier --write",
|
|
|
|
"format:check": "pnpm prettier --check",
|
2023-07-22 03:19:45 +02:00
|
|
|
"prettier": "prettier './**/*.(ts|js|cjs|mjs|json|scss|yml|yaml)'",
|
2023-07-10 22:23:13 +02:00
|
|
|
"test": "run-p test:vitest test:typecheck",
|
|
|
|
"test:vitest": "vitest run",
|
|
|
|
"test:typecheck": "tsc --noEmit --project spec/tsconfig.json",
|
|
|
|
"test:watch": "vitest",
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"typecheck:watch": "tsc --noEmit --watch",
|
|
|
|
"bump-version": "node ./tools/bump-version.js",
|
|
|
|
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-26 10:01:02 +02:00
|
|
|
"@commitlint/cli": "18.2.0",
|
2023-10-25 12:00:42 +02:00
|
|
|
"@commitlint/config-conventional": "18.1.0",
|
2023-07-10 22:23:13 +02:00
|
|
|
"@foundryvtt/foundryvtt-cli": "0.0.9",
|
2023-10-31 03:00:50 +01:00
|
|
|
"@guanghechen/rollup-plugin-copy": "5.0.11",
|
2023-07-10 22:23:13 +02:00
|
|
|
"@ironkinoko/rollup-plugin-styles": "4.0.3",
|
2023-11-05 06:00:46 +01:00
|
|
|
"@swc/core": "1.3.96",
|
2023-10-18 21:00:44 +02:00
|
|
|
"@types/fs-extra": "11.0.3",
|
2023-11-06 21:00:44 +01:00
|
|
|
"@types/jquery": "3.5.26",
|
2023-10-31 10:00:47 +01:00
|
|
|
"@types/node": "18.18.8",
|
2023-11-06 19:00:45 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.10.0",
|
|
|
|
"@typescript-eslint/parser": "6.10.0",
|
2023-09-09 02:00:43 +02:00
|
|
|
"conventional-changelog-cli": "4.1.0",
|
2023-09-09 01:00:47 +02:00
|
|
|
"conventional-changelog-conventionalcommits": "7.0.2",
|
2023-11-04 01:01:00 +01:00
|
|
|
"eslint": "8.53.0",
|
2023-08-05 22:00:46 +02:00
|
|
|
"eslint-config-prettier": "9.0.0",
|
2023-07-10 22:23:13 +02:00
|
|
|
"fs-extra": "11.1.1",
|
2023-08-02 00:00:52 +02:00
|
|
|
"handlebars": "4.7.8",
|
2023-07-10 22:23:13 +02:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-08-29 15:00:36 +02:00
|
|
|
"prettier": "3.0.3",
|
2023-09-27 09:00:45 +02:00
|
|
|
"rimraf": "5.0.5",
|
2023-11-03 22:00:51 +01:00
|
|
|
"rollup": "4.3.0",
|
2023-10-21 16:00:45 +02:00
|
|
|
"rollup-plugin-swc3": "0.10.3",
|
2023-10-26 03:00:49 +02:00
|
|
|
"sass": "1.69.5",
|
2023-07-10 22:23:13 +02:00
|
|
|
"semver": "7.5.4",
|
2023-08-18 21:01:31 +02:00
|
|
|
"tslib": "2.6.2",
|
2023-08-24 19:00:42 +02:00
|
|
|
"typescript": "5.2.2",
|
2023-10-18 13:00:41 +02:00
|
|
|
"vite": "4.5.0",
|
2023-09-29 10:00:42 +02:00
|
|
|
"vitest": "0.34.6",
|
2023-07-10 22:23:13 +02:00
|
|
|
"yargs": "17.7.2"
|
|
|
|
},
|
2023-11-01 18:00:37 +01:00
|
|
|
"packageManager": "pnpm@8.10.2"
|
2020-10-29 16:18:38 +01:00
|
|
|
}
|