├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .terserrc.js ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json ├── rollup.config.js ├── src ├── atom.d.ts ├── bin.ts ├── constants.ts ├── helpers │ ├── atom.ts │ ├── index.ts │ └── node.ts ├── index.ts ├── tsconfig.json ├── types.ts └── view │ ├── atom.ts │ ├── index.ts │ └── node.ts └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | .idea 5 | /lib 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/.prettierrc -------------------------------------------------------------------------------- /.terserrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("terser-config-atomic") 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/atom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/atom.d.ts -------------------------------------------------------------------------------- /src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/bin.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/helpers/atom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/helpers/atom.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/helpers/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/helpers/node.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/view/atom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/view/atom.ts -------------------------------------------------------------------------------- /src/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/view/index.ts -------------------------------------------------------------------------------- /src/view/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/src/view/node.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/package-deps/HEAD/tsconfig.json --------------------------------------------------------------------------------