2022-05-16 02:08:27 +02:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"name": "tickwerk",
|
2022-05-16 02:32:57 +02:00
|
|
|
"description": "A tick based combat system for Foundry Virtual Tabletop",
|
2022-11-28 01:08:17 +01:00
|
|
|
"version": "1.3.0",
|
2022-05-16 02:08:27 +02:00
|
|
|
"license": "https://git.f3l.de/dungeonslayers/tickwerk#licensing",
|
|
|
|
"homepage": "https://git.f3l.de/dungeonslayers/tickwerk",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.f3l.de/dungeonslayers/tickwerk"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://git.f3l.de/dungeonslayers/tickwerk/-/issues"
|
|
|
|
},
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Johannes Loher",
|
|
|
|
"email": "johannes.loher@fg4f.de"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "module",
|
|
|
|
"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",
|
2022-11-28 00:52:31 +01:00
|
|
|
"lint": "eslint --ext .js,.cjs,.mjs .",
|
|
|
|
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
|
|
|
|
"format": "prettier --write \"./**/*.(js|cjs|mjs|json|scss|yml)\"",
|
2022-05-16 02:08:27 +02:00
|
|
|
"bump-version": "node ./tools/bump-version.js",
|
|
|
|
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-12 16:20:02 +01:00
|
|
|
"@commitlint/cli": "17.4.2",
|
|
|
|
"@commitlint/config-conventional": "17.4.2",
|
2023-01-14 06:20:48 +01:00
|
|
|
"@guanghechen/rollup-plugin-copy": "3.0.2",
|
2023-02-01 03:15:29 +01:00
|
|
|
"@swc/core": "1.3.32",
|
2022-05-16 02:08:27 +02:00
|
|
|
"conventional-changelog-cli": "2.2.2",
|
2022-07-17 19:37:21 +02:00
|
|
|
"conventional-changelog-conventionalcommits": "5.0.0",
|
2023-01-29 01:19:38 +01:00
|
|
|
"eslint": "8.33.0",
|
2023-01-02 18:20:30 +01:00
|
|
|
"eslint-config-prettier": "8.6.0",
|
2022-07-17 19:37:21 +02:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2022-11-30 01:19:44 +01:00
|
|
|
"fs-extra": "11.1.0",
|
2022-05-16 02:08:27 +02:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-01-14 05:21:44 +01:00
|
|
|
"prettier": "2.8.3",
|
2023-01-24 07:14:34 +01:00
|
|
|
"rimraf": "4.1.2",
|
2023-02-03 14:20:02 +01:00
|
|
|
"rollup": "3.13.0",
|
2022-05-16 02:08:27 +02:00
|
|
|
"rollup-plugin-styles": "4.0.0",
|
2022-12-11 14:22:33 +01:00
|
|
|
"rollup-plugin-swc3": "0.8.0",
|
2023-02-01 02:14:57 +01:00
|
|
|
"sass": "1.58.0",
|
2022-10-04 22:18:26 +02:00
|
|
|
"semver": "7.3.8",
|
2022-11-03 18:17:34 +01:00
|
|
|
"yargs": "17.6.2"
|
2022-05-16 02:08:27 +02:00
|
|
|
},
|
2022-10-17 21:46:20 +02:00
|
|
|
"packageManager": "yarn@3.2.4"
|
2022-05-16 02:08:27 +02:00
|
|
|
}
|