2021-06-29 05:27:27 +02:00
{
"private" : true ,
"name" : "darkness-dependent-vision" ,
2021-12-20 06:36:11 +01:00
"version" : "0.3.0" ,
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" : {
2021-12-20 06:10:46 +01:00
"@commitlint/cli" : "15.0.0" ,
"@commitlint/config-conventional" : "15.0.0" ,
"@guanghechen/rollup-plugin-copy" : "1.8.5" ,
2021-07-23 23:57:36 +02:00
"@typhonjs-fvtt/eslint-config-foundry.js" : "0.8.0" ,
2021-12-20 08:14:56 +01:00
"conventional-changelog-cli" : "2.1.1" ,
"conventional-changelog-conventionalcommits" : "4.6.1" ,
2021-12-18 00:14:05 +01:00
"eslint" : "8.5.0" ,
2021-07-23 23:57:36 +02:00
"eslint-config-prettier" : "8.3.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" ,
2021-12-24 11:14:48 +01:00
"lint-staged" : "12.1.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" ,
2021-12-24 08:14:20 +01:00
"rollup" : "2.62.0" ,
2021-10-27 00:14:14 +02:00
"rollup-plugin-sourcemaps" : "0.6.3" ,
"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
}