ds4/package.json

100 lines
3.5 KiB
JSON
Raw Normal View History

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.",
2023-07-09 23:21:49 +02:00
"version": "1.20.0-0",
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": {
2023-06-29 21:53:50 +02:00
"url": "https://git.f3l.de/dungeonslayers/ds4/issues"
2020-12-31 05:02:38 +01:00
},
"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
}
],
"type": "module",
2020-12-23 17:09:02 +01:00
"scripts": {
"build": "run-s clean:files build:files",
2023-06-25 16:04:27 +02:00
"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",
"prettier": "prettier \"./**/*.(ts|js|cjs|mjs|json|scss|yml)\"",
2022-08-22 22:05:14 +02:00
"test": "run-p test:vitest test:typecheck",
"test:vitest": "vitest run",
"test:typecheck": "tsc --noEmit --project spec/tsconfig.json",
"test:watch": "vitest",
"test:ci": "run-p test:ci:vitest test:typecheck",
"test:ci:vitest": "vitest run --reporter=default --reporter=junit --outputFile=junit.xml",
2021-08-19 04:01:55 +02:00
"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"
2020-12-23 17:09:02 +01:00
},
"devDependencies": {
2023-06-25 10:28:48 +02:00
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
2023-06-25 16:04:27 +02:00
"@foundryvtt/foundryvtt-cli": "0.0.9",
"@guanghechen/rollup-plugin-copy": "5.0.1",
"@ironkinoko/rollup-plugin-styles": "4.0.3",
"@swc/core": "1.3.68",
"@types/fs-extra": "11.0.1",
"@types/jquery": "3.5.16",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"conventional-changelog-cli": "3.0.0",
2023-06-25 10:28:48 +02:00
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"fs-extra": "11.1.1",
"handlebars": "4.7.7",
"npm-run-all": "4.1.5",
"prettier": "3.0.0",
"rimraf": "5.0.1",
2023-06-25 16:04:27 +02:00
"rollup": "3.25.3",
"rollup-plugin-swc3": "0.8.2",
2023-06-25 10:28:48 +02:00
"sass": "1.63.6",
"semver": "7.5.4",
"tslib": "2.6.0",
"typescript": "5.1.6",
"vite": "4.4.2",
"vitest": "0.33.0",
"yargs": "17.7.2"
2020-12-23 18:23:26 +01:00
},
"packageManager": "pnpm@8.6.7"
2020-10-29 16:18:38 +01:00
}