darkness-dependent-vision/package.json

66 lines
2.2 KiB
JSON
Raw Normal View History

2021-06-29 05:27:27 +02:00
{
"private": true,
"name": "darkness-dependent-vision",
2023-06-21 22:59:18 +02:00
"version": "0.3.13",
2021-06-29 21:07:13 +02:00
"description": "A module for Foundry Virtual Tabletop that provides functionality to make the dim and bright vision of tokens depend on the scene's darkness level.",
2023-06-21 20:15:19 +02:00
"license": "https://git2.f3l.de/saluu/darkness-dependent-vision/src/branch/master/LICENSE.md",
"homepage": "https://git2.f3l.de/saluu/darkness-dependent-vision",
2021-06-29 05:27:27 +02:00
"repository": {
"type": "git",
2023-06-21 20:15:19 +02:00
"url": "https://git2.f3l.de/saluu/darkness-dependent-vision"
2021-06-29 05:27:27 +02:00
},
"bugs": {
2023-06-21 20:15:19 +02:00
"url": "https://git2.f3l.de/saluu/darkness-dependent-vision/issues"
2021-06-29 05:27:27 +02:00
},
"contributors": [
{
"name": "Johannes Loher",
"email": "johannes.loher@fg4f.de"
}
],
"type": "module",
2021-06-29 05:27:27 +02:00
"scripts": {
"build": "run-s clean:files build:files",
"build:files": "rollup -c",
"watch": "rollup -c -w",
"link-package": "node ./tools/link-package.mjs",
"clean": "run-p clean:files clean:link",
"clean:files": "rimraf dist",
"clean:link": "node ./tools/link-package.mjs --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)\"",
"typecheck": "tsc --noEmit",
2021-12-20 06:31:16 +01:00
"bump-version": "node ./tools/bump-version.mjs",
"postinstall": "husky install",
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
2021-06-29 05:27:27 +02:00
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@guanghechen/rollup-plugin-copy": "5.0.12",
2021-07-23 23:57:36 +02:00
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
"conventional-changelog-cli": "4.1.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.2.0",
2021-07-23 23:57:36 +02:00
"gulp": "4.0.2",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"rimraf": "5.0.5",
"rollup": "4.9.1",
2021-10-27 00:14:14 +02:00
"rollup-plugin-terser": "7.0.2",
"semver": "7.5.4",
"yargs": "17.7.2"
2021-06-29 05:27:27 +02:00
},
"lint-staged": {
"*.(js|mjs|cjs)": "eslint --fix",
"*.(json|css|yml)": "prettier --write"
},
2023-11-14 20:02:51 +01:00
"packageManager": "yarn@3.7.0"
2021-06-29 05:27:27 +02:00
}