ds4/package.json

97 lines
3.4 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.",
2022-12-02 00:50:08 +01:00
"version": "1.19.1",
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
}
],
"type": "module",
2020-12-23 17:09:02 +01:00
"scripts": {
"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 .",
"format": "prettier --write \"./**/*.(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",
"convert-packs-to-json": "node ./tools/convert-packs-to-json.js",
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
2020-12-23 17:09:02 +01:00
},
"devDependencies": {
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@guanghechen/rollup-plugin-copy": "2.1.4",
"@swc/core": "1.3.24",
"@types/fs-extra": "9.0.13",
"@types/jquery": "3.5.16",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"conventional-changelog-cli": "2.2.2",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.1.0",
"handlebars": "4.7.7",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"rollup": "3.9.1",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-styles": "4.0.0",
"rollup-plugin-swc3": "0.8.0",
"sass": "1.57.1",
"semver": "7.3.8",
"tslib": "2.4.1",
"typescript": "4.9.4",
"vite": "4.0.4",
"vitest": "0.26.3",
"yargs": "17.6.2"
2020-12-23 18:23:26 +01:00
},
"packageManager": "yarn@3.3.1"
2020-10-29 16:18:38 +01:00
}