ds4/package.json
Johannes Loher 91b222a14e
Some checks failed
ci/woodpecker/pr/checks Pipeline failed
chore: switch to bun as package manager and test runner
2023-07-22 03:04:04 +02:00

97 lines
2.9 KiB
JSON

{
"private": true,
"name": "dungeonslayers4",
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
"version": "1.20.0-1",
"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"
},
{
"name": "Gesina Schwalbe",
"email": "gesina.schwalbe@pheerai.de"
},
{
"name": "Oliver Rümpelein",
"email": "foundryvtt@pheerai.de"
},
{
"name": "Siegfried Krug",
"email": "foundryvtt@asdil1991.de"
},
{
"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",
"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",
"test:typecheck": "tsc --noEmit --project spec/tsconfig.json",
"test:watch": "bun test --watch",
"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",
"@foundryvtt/foundryvtt-cli": "0.0.9",
"@guanghechen/rollup-plugin-copy": "5.0.2",
"@ironkinoko/rollup-plugin-styles": "4.0.3",
"@swc/core": "1.3.70",
"@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",
"conventional-changelog-cli": "3.0.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.45.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",
"rollup": "3.26.3",
"rollup-plugin-swc3": "0.9.1",
"sass": "1.64.0",
"semver": "7.5.4",
"tslib": "2.6.0",
"typescript": "5.1.6",
"vite": "4.4.6",
"yargs": "17.7.2"
}
}