2021-06-29 05:27:27 +02:00
{
"private" : true ,
"name" : "darkness-dependent-vision" ,
2022-02-08 21:39:39 +01:00
"version" : "0.3.6" ,
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." ,
2021-06-29 22:08:36 +02:00
"license" : "https://git.f3l.de/ghost/darkness-dependent-vision#licensing" ,
2021-06-29 05:27:27 +02:00
"homepage" : "https://git.f3l.de/ghost/darkness-dependent-vision" ,
"repository" : {
"type" : "git" ,
"url" : "https://git.f3l.de/ghost/darkness-dependent-vision"
} ,
"bugs" : {
"url" : "https://git.f3l.de/ghost/darkness-dependent-vision/-/issues"
} ,
"contributors" : [
{
"name" : "Johannes Loher" ,
"email" : "johannes.loher@fg4f.de"
}
] ,
"scripts" : {
2021-12-20 06:10:46 +01:00
"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" ,
2021-12-20 06:10:46 +01:00
"postinstall" : "husky install" ,
"changelog" : "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
2021-06-29 05:27:27 +02:00
} ,
"devDependencies" : {
2022-02-13 08:16:21 +01:00
"@commitlint/cli" : "16.2.1" ,
"@commitlint/config-conventional" : "16.2.1" ,
2022-02-17 13:16:28 +01:00
"@guanghechen/rollup-plugin-copy" : "1.9.0" ,
2021-07-23 23:57:36 +02:00
"@typhonjs-fvtt/eslint-config-foundry.js" : "0.8.0" ,
2021-12-25 20:15:18 +01:00
"conventional-changelog-cli" : "2.2.2" ,
2021-12-29 21:14:43 +01:00
"conventional-changelog-conventionalcommits" : "4.6.3" ,
2022-02-12 02:15:45 +01:00
"eslint" : "8.9.0" ,
2022-02-19 12:17:11 +01:00
"eslint-config-prettier" : "8.4.0" ,
2021-08-30 22:17:05 +02:00
"eslint-plugin-prettier" : "4.0.0" ,
2021-07-23 23:57:36 +02:00
"fs-extra" : "10.0.0" ,
"gulp" : "4.0.2" ,
2021-10-21 04:19:48 +02:00
"husky" : "7.0.4" ,
2022-02-13 18:16:38 +01:00
"lint-staged" : "12.3.4" ,
2021-12-20 06:10:46 +01:00
"npm-run-all" : "4.1.5" ,
2021-12-04 16:14:45 +01:00
"prettier" : "2.5.1" ,
2021-12-20 06:10:46 +01:00
"rimraf" : "3.0.2" ,
2022-02-22 08:13:46 +01:00
"rollup" : "2.68.0" ,
2021-10-27 00:14:14 +02:00
"rollup-plugin-terser" : "7.0.2" ,
2021-07-23 23:57:36 +02:00
"semver" : "7.3.5" ,
2021-12-24 00:17:21 +01:00
"yargs" : "17.3.1"
2021-06-29 05:27:27 +02:00
} ,
"lint-staged" : {
2021-12-20 06:10:46 +01:00
"*.(js|mjs|cjs)" : "eslint --fix" ,
2021-10-26 23:35:57 +02:00
"*.(json|css|yml)" : "prettier --write"
2021-12-20 06:10:46 +01:00
} ,
"packageManager" : "yarn@3.1.1"
2021-06-29 05:27:27 +02:00
}