2021-06-29 05:27:27 +02:00
{
"private" : true ,
"name" : "darkness-dependent-vision" ,
2022-09-02 16:41:35 +02:00
"version" : "0.3.9" ,
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"
}
] ,
2022-10-17 03:26:51 +02:00
"type" : "module" ,
2021-06-29 05:27:27 +02:00
"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" : {
2023-04-14 11:13:48 +02:00
"@commitlint/cli" : "17.6.1" ,
"@commitlint/config-conventional" : "17.6.1" ,
2023-03-26 10:22:57 +02:00
"@guanghechen/rollup-plugin-copy" : "4.7.4" ,
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" ,
2023-04-21 23:13:56 +02:00
"eslint" : "8.39.0" ,
2023-03-25 02:17:25 +01:00
"eslint-config-prettier" : "8.8.0" ,
2022-06-30 06:17:30 +02:00
"eslint-plugin-prettier" : "4.2.1" ,
2023-03-24 16:16:42 +01:00
"fs-extra" : "11.1.1" ,
2021-07-23 23:57:36 +02:00
"gulp" : "4.0.2" ,
2023-01-03 09:20:37 +01:00
"husky" : "8.0.3" ,
2023-04-07 15:13:47 +02:00
"lint-staged" : "13.2.1" ,
2021-12-20 06:10:46 +01:00
"npm-run-all" : "4.1.5" ,
2023-04-23 10:13:54 +02:00
"prettier" : "2.8.8" ,
2023-04-10 01:13:43 +02:00
"rimraf" : "5.0.0" ,
2023-04-21 07:13:48 +02:00
"rollup" : "3.20.7" ,
2021-10-27 00:14:14 +02:00
"rollup-plugin-terser" : "7.0.2" ,
2023-04-17 20:13:44 +02:00
"semver" : "7.5.0" ,
2023-02-21 18:15:49 +01:00
"yargs" : "17.7.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
} ,
2023-03-26 22:24:15 +02:00
"packageManager" : "yarn@3.5.0"
2021-06-29 05:27:27 +02:00
}