├── .appveyor.yml ├── .bmp.yml ├── .changelog ├── CHANGELOG.tpl#mkd └── config.yml ├── .codacy.yml ├── .codeclimate.yml ├── .codecov.yml ├── .commitlint.config.js ├── .deps-lock ├── .gitattributes ├── package-lock.json └── yarn.lock ├── .ecrc.JS.json ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .remarkrc.js ├── .rollup.config.types.js ├── .scrutinizer.yml ├── .vscode ├── cspell.dictionaries │ ├── acronyms+names.wordlist.txt │ ├── jargon.wordlist.txt │ ├── people.wordlist.txt │ └── shell.wordlist.txt ├── cspell.json ├── extensions.json └── settings.json ├── .yarn └── releases │ └── yarn-1.22.19.cjs ├── .yarnrc ├── .yarnrc.yml ├── CHANGELOG.mkd ├── LICENSE ├── README.md ├── VERSION ├── cjs └── package.json ├── dist ├── cjs │ ├── esm-wrapper │ │ ├── mod.esm.js │ │ └── package.json │ ├── lib │ │ └── XDGAppPaths.js │ ├── mod.cjs.d.ts │ ├── mod.cjs.js │ └── platform-adapters │ │ ├── _base.js │ │ └── node.js ├── esm │ ├── lib │ │ └── XDGAppPaths.js │ ├── mod.esm.js │ ├── package.json │ └── platform-adapters │ │ ├── _base.js │ │ └── node.js ├── types │ ├── mod.cjs.d.ts │ └── mod.d.ts └── xdg-app-paths.tgz ├── eg ├── show-paths.cjs.js ├── show-paths.esm.mjs ├── show-paths.local.deno.ts ├── show-paths.remote(CDN).deno.ts ├── show-paths.remote.deno.ts └── show-paths.ts ├── package.json ├── src ├── esm-wrapper │ ├── mod.esm.js │ └── package.json ├── lib │ └── XDGAppPaths.ts ├── mod.cjs.ts ├── mod.deno.ts ├── mod.esm.ts ├── mod.test.ts └── platform-adapters │ ├── _base.ts │ ├── deno.deno.ts │ └── node.ts ├── test ├── dist.test.js ├── fixtures │ ├── cli-display-name.cjs.js │ ├── cli-display-name.esm-wrapper.mjs │ ├── cli-display-name.esm.mjs │ ├── cli-display-name.ts │ └── cli-display-name.umd.js ├── integration.test.js ├── types.test-d.ts └── unit.test.js ├── tsconfig.json ├── tsconfig ├── tsconfig.cjs.json ├── tsconfig.eslint.json ├── tsconfig.esm.json ├── tsconfig.lab.json ├── tsconfig.types.json └── tsconfig.umd.json └── vendor ├── .gitattributes └── types └── deno.d.ts /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.bmp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.bmp.yml -------------------------------------------------------------------------------- /.changelog/CHANGELOG.tpl#mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.changelog/CHANGELOG.tpl#mkd -------------------------------------------------------------------------------- /.changelog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.changelog/config.yml -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.commitlint.config.js -------------------------------------------------------------------------------- /.deps-lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.deps-lock/.gitattributes -------------------------------------------------------------------------------- /.deps-lock/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.deps-lock/package-lock.json -------------------------------------------------------------------------------- /.deps-lock/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.deps-lock/yarn.lock -------------------------------------------------------------------------------- /.ecrc.JS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.ecrc.JS.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.remarkrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.remarkrc.js -------------------------------------------------------------------------------- /.rollup.config.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.rollup.config.types.js -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.vscode/cspell.dictionaries/acronyms+names.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/cspell.dictionaries/acronyms+names.wordlist.txt -------------------------------------------------------------------------------- /.vscode/cspell.dictionaries/jargon.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/cspell.dictionaries/jargon.wordlist.txt -------------------------------------------------------------------------------- /.vscode/cspell.dictionaries/people.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/cspell.dictionaries/people.wordlist.txt -------------------------------------------------------------------------------- /.vscode/cspell.dictionaries/shell.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/cspell.dictionaries/shell.wordlist.txt -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.22.19.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.yarn/releases/yarn-1.22.19.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.yarnrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/CHANGELOG.mkd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.3.0 2 | -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/cjs/package.json -------------------------------------------------------------------------------- /dist/cjs/esm-wrapper/mod.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/cjs/esm-wrapper/mod.esm.js -------------------------------------------------------------------------------- /dist/cjs/esm-wrapper/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} 2 | -------------------------------------------------------------------------------- /dist/cjs/lib/XDGAppPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/cjs/lib/XDGAppPaths.js -------------------------------------------------------------------------------- /dist/cjs/mod.cjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/cjs/mod.cjs.d.ts -------------------------------------------------------------------------------- /dist/cjs/mod.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/cjs/mod.cjs.js -------------------------------------------------------------------------------- /dist/cjs/platform-adapters/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/cjs/platform-adapters/_base.js -------------------------------------------------------------------------------- /dist/cjs/platform-adapters/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/cjs/platform-adapters/node.js -------------------------------------------------------------------------------- /dist/esm/lib/XDGAppPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/esm/lib/XDGAppPaths.js -------------------------------------------------------------------------------- /dist/esm/mod.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/esm/mod.esm.js -------------------------------------------------------------------------------- /dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} 2 | -------------------------------------------------------------------------------- /dist/esm/platform-adapters/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/esm/platform-adapters/_base.js -------------------------------------------------------------------------------- /dist/esm/platform-adapters/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/esm/platform-adapters/node.js -------------------------------------------------------------------------------- /dist/types/mod.cjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/types/mod.cjs.d.ts -------------------------------------------------------------------------------- /dist/types/mod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/types/mod.d.ts -------------------------------------------------------------------------------- /dist/xdg-app-paths.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/dist/xdg-app-paths.tgz -------------------------------------------------------------------------------- /eg/show-paths.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/eg/show-paths.cjs.js -------------------------------------------------------------------------------- /eg/show-paths.esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/eg/show-paths.esm.mjs -------------------------------------------------------------------------------- /eg/show-paths.local.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/eg/show-paths.local.deno.ts -------------------------------------------------------------------------------- /eg/show-paths.remote(CDN).deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/eg/show-paths.remote(CDN).deno.ts -------------------------------------------------------------------------------- /eg/show-paths.remote.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/eg/show-paths.remote.deno.ts -------------------------------------------------------------------------------- /eg/show-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/eg/show-paths.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/package.json -------------------------------------------------------------------------------- /src/esm-wrapper/mod.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/esm-wrapper/mod.esm.js -------------------------------------------------------------------------------- /src/esm-wrapper/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} 2 | -------------------------------------------------------------------------------- /src/lib/XDGAppPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/lib/XDGAppPaths.ts -------------------------------------------------------------------------------- /src/mod.cjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/mod.cjs.ts -------------------------------------------------------------------------------- /src/mod.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/mod.deno.ts -------------------------------------------------------------------------------- /src/mod.esm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/mod.esm.ts -------------------------------------------------------------------------------- /src/mod.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/mod.test.ts -------------------------------------------------------------------------------- /src/platform-adapters/_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/platform-adapters/_base.ts -------------------------------------------------------------------------------- /src/platform-adapters/deno.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/platform-adapters/deno.deno.ts -------------------------------------------------------------------------------- /src/platform-adapters/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/src/platform-adapters/node.ts -------------------------------------------------------------------------------- /test/dist.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/dist.test.js -------------------------------------------------------------------------------- /test/fixtures/cli-display-name.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/fixtures/cli-display-name.cjs.js -------------------------------------------------------------------------------- /test/fixtures/cli-display-name.esm-wrapper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/fixtures/cli-display-name.esm-wrapper.mjs -------------------------------------------------------------------------------- /test/fixtures/cli-display-name.esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/fixtures/cli-display-name.esm.mjs -------------------------------------------------------------------------------- /test/fixtures/cli-display-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/fixtures/cli-display-name.ts -------------------------------------------------------------------------------- /test/fixtures/cli-display-name.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/fixtures/cli-display-name.umd.js -------------------------------------------------------------------------------- /test/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/integration.test.js -------------------------------------------------------------------------------- /test/types.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/types.test-d.ts -------------------------------------------------------------------------------- /test/unit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/test/unit.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig/tsconfig.esm.json -------------------------------------------------------------------------------- /tsconfig/tsconfig.lab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig/tsconfig.lab.json -------------------------------------------------------------------------------- /tsconfig/tsconfig.types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig/tsconfig.types.json -------------------------------------------------------------------------------- /tsconfig/tsconfig.umd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/tsconfig/tsconfig.umd.json -------------------------------------------------------------------------------- /vendor/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/vendor/.gitattributes -------------------------------------------------------------------------------- /vendor/types/deno.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rivy/js.xdg-app-paths/HEAD/vendor/types/deno.d.ts --------------------------------------------------------------------------------