2021-06-29 05:27:27 +02:00
{
"private" : true ,
"name" : "darkness-dependent-vision" ,
2022-07-17 19:49:40 +02:00
"version" : "0.3.7" ,
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-06-25 09:14:16 +02:00
"@commitlint/cli" : "17.0.3" ,
"@commitlint/config-conventional" : "17.0.3" ,
2022-07-27 17:15:49 +02:00
"@guanghechen/rollup-plugin-copy" : "1.9.8" ,
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" ,
2022-05-27 20:13:38 +02:00
"conventional-changelog-conventionalcommits" : "5.0.0" ,
2022-08-14 04:14:37 +02:00
"eslint" : "8.22.0" ,
2022-03-02 22:13:46 +01:00
"eslint-config-prettier" : "8.5.0" ,
2022-06-30 06:17:30 +02:00
"eslint-plugin-prettier" : "4.2.1" ,
2022-04-16 21:16:21 +02:00
"fs-extra" : "10.1.0" ,
2021-07-23 23:57:36 +02:00
"gulp" : "4.0.2" ,
2022-05-09 12:17:09 +02:00
"husky" : "8.0.1" ,
2022-06-24 17:14:00 +02:00
"lint-staged" : "13.0.3" ,
2021-12-20 06:10:46 +01:00
"npm-run-all" : "4.1.5" ,
2022-06-16 08:15:06 +02:00
"prettier" : "2.7.1" ,
2021-12-20 06:10:46 +01:00
"rimraf" : "3.0.2" ,
2022-08-21 23:33:10 +02:00
"rollup" : "2.78.1" ,
2021-10-27 00:14:14 +02:00
"rollup-plugin-terser" : "7.0.2" ,
2022-04-12 20:13:55 +02:00
"semver" : "7.3.7" ,
2022-05-16 04:18:41 +02:00
"yargs" : "17.5.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
} ,
2022-08-21 23:33:10 +02:00
"packageManager" : "yarn@3.2.2"
2021-06-29 05:27:27 +02:00
}