diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4c18324..754220e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -22,7 +22,7 @@ "customizations": { "codespaces": { - "openFiles": ["readme.md"] + "openFiles": ["README.md"] }, "vscode": { "extensions": [ diff --git a/README.md b/README.md index b0bd037..03282fd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A layer around the `wnfs` package that provides a `FileSystem` class, a root tree, mounts, transactions and some other essentials. -_More info in the [package readme](https://github.com/wnfs-wg/nest/tree/main/packages/nest/readme.md)._ +_More info in the [package readme](https://github.com/wnfs-wg/nest/tree/main/packages/nest/README.md)._ ## Packages diff --git a/packages/nest/package.json b/packages/nest/package.json index 1e4dfd4..26d157e 100644 --- a/packages/nest/package.json +++ b/packages/nest/package.json @@ -62,44 +62,21 @@ }, "typesVersions": { "*": { - ".": [ - "dist/src/index" - ], - "app-info": [ - "dist/src/app-info" - ], - "class": [ - "dist/src/class" - ], - "crypto": [ - "dist/src/crypto" - ], - "errors": [ - "dist/src/errors" - ], - "events": [ - "dist/src/events" - ], - "path": [ - "dist/src/path" - ], - "transaction": [ - "dist/src/transaction" - ], - "types": [ - "dist/src/types" - ], - "version": [ - "dist/src/version" - ] + ".": ["dist/src/index"], + "app-info": ["dist/src/app-info"], + "class": ["dist/src/class"], + "crypto": ["dist/src/crypto"], + "errors": ["dist/src/errors"], + "events": ["dist/src/events"], + "path": ["dist/src/path"], + "transaction": ["dist/src/transaction"], + "types": ["dist/src/types"], + "version": ["dist/src/version"] } }, - "files": [ - "dist", - "src" - ], + "files": ["dist", "src"], "scripts": { - "lint": "tsc --build && eslint . --quiet --ignore-pattern='readme.md' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore", + "lint": "tsc --build && eslint . --quiet --ignore-pattern='README.md' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore", "build": "tsc --build", "test": "pnpm run test:node && pnpm run test:browser", "test:node": "mocha 'test/**/!(*.browser).test.ts' --bail --timeout 30000", @@ -135,15 +112,11 @@ "provenance": true }, "eslintConfig": { - "extends": [ - "@fission-codes" - ], + "extends": ["@fission-codes"], "env": { "mocha": true }, - "ignorePatterns": [ - "dist" - ], + "ignorePatterns": ["dist"], "rules": { "@typescript-eslint/no-unused-vars": [ "error", @@ -153,18 +126,11 @@ "varsIgnorePattern": "^_" } ], - "unicorn/no-array-reduce": [ - "off" - ] + "unicorn/no-array-reduce": ["off"] } }, "depcheck": { - "specials": [ - "bin" - ], - "ignores": [ - "@types/*", - "assert" - ] + "specials": ["bin"], + "ignores": ["@types/*", "assert"] } }