ds4/package.json

97 lines
2.9 KiB
JSON
Raw Normal View History

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-07-22 00:53:52 +02:00
"version": "1.20.0-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": "bun eslint",
"lint:fix": "bun eslint --fix",
2023-07-10 22:23:13 +02:00
"eslint": "eslint --ext .ts,.js,.cjs,.mjs .",
"format": "bun prettier --write",
"format:check": "bun prettier --check",
"prettier": "prettier './**/*.(ts|js|cjs|mjs|json|scss|yml|yaml)'",
"test": "run-p test:bun test:typecheck",
"test:bun": "bun test",
2023-07-10 22:23:13 +02:00
"test:typecheck": "tsc --noEmit --project spec/tsconfig.json",
"test:watch": "bun test --watch",
2023-07-10 22:23:13 +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"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
2023-07-10 22:23:13 +02:00
"@foundryvtt/foundryvtt-cli": "0.0.9",
"@guanghechen/rollup-plugin-copy": "5.0.2",
2023-07-10 22:23:13 +02:00
"@ironkinoko/rollup-plugin-styles": "4.0.3",
"@swc/core": "1.3.70",
2023-07-10 22:23:13 +02:00
"@types/fs-extra": "11.0.1",
"@types/jquery": "3.5.16",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"bun-types": "0.7.0",
2023-07-10 22:23:13 +02:00
"conventional-changelog-cli": "3.0.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.45.0",
2023-07-10 22:23:13 +02:00
"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",
"rollup": "3.26.3",
"rollup-plugin-swc3": "0.9.1",
"sass": "1.64.0",
2023-07-10 22:23:13 +02:00
"semver": "7.5.4",
"tslib": "2.6.0",
"typescript": "5.1.6",
"vite": "4.4.6",
2023-07-10 22:23:13 +02:00
"yargs": "17.7.2"
}
2020-10-29 16:18:38 +01:00
}