|
| 1 | +{ |
| 2 | + "name": "blockstore-opfs", |
| 3 | + "version": "1.1.8", |
| 4 | + "description": "Blockstore implementation with file system backend", |
| 5 | + "license": "Apache-2.0 OR MIT", |
| 6 | + "homepage": "https://github.com/ipfs/js-stores/tree/master/packages/blockstore-fs#readme", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "git+https://github.com/ipfs/js-stores.git" |
| 10 | + }, |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/ipfs/js-stores/issues" |
| 13 | + }, |
| 14 | + "keywords": [ |
| 15 | + "datastore", |
| 16 | + "fs", |
| 17 | + "interface", |
| 18 | + "ipfs", |
| 19 | + "key-value" |
| 20 | + ], |
| 21 | + "type": "module", |
| 22 | + "types": "./dist/src/index.d.ts", |
| 23 | + "typesVersions": { |
| 24 | + "*": { |
| 25 | + "*": [ |
| 26 | + "*", |
| 27 | + "dist/*", |
| 28 | + "dist/src/*", |
| 29 | + "dist/src/*/index" |
| 30 | + ], |
| 31 | + "src/*": [ |
| 32 | + "*", |
| 33 | + "dist/*", |
| 34 | + "dist/src/*", |
| 35 | + "dist/src/*/index" |
| 36 | + ] |
| 37 | + } |
| 38 | + }, |
| 39 | + "files": [ |
| 40 | + "src", |
| 41 | + "dist", |
| 42 | + "!dist/test", |
| 43 | + "!**/*.tsbuildinfo" |
| 44 | + ], |
| 45 | + "exports": { |
| 46 | + ".": { |
| 47 | + "types": "./dist/src/index.d.ts", |
| 48 | + "import": "./dist/src/index.js" |
| 49 | + }, |
| 50 | + "./sharding": { |
| 51 | + "types": "./dist/src/sharding.d.ts", |
| 52 | + "import": "./dist/src/sharding.js" |
| 53 | + } |
| 54 | + }, |
| 55 | + "eslintConfig": { |
| 56 | + "extends": "ipfs", |
| 57 | + "parserOptions": { |
| 58 | + "project": [ |
| 59 | + "tsconfig.json", |
| 60 | + "benchmarks/encoding/tsconfig.json" |
| 61 | + ], |
| 62 | + "sourceType": "module", |
| 63 | + "lib": ["DOM"] |
| 64 | + } |
| 65 | + }, |
| 66 | + "release": { |
| 67 | + "branches": [ |
| 68 | + "main" |
| 69 | + ], |
| 70 | + "plugins": [ |
| 71 | + [ |
| 72 | + "@semantic-release/commit-analyzer", |
| 73 | + { |
| 74 | + "preset": "conventionalcommits", |
| 75 | + "releaseRules": [ |
| 76 | + { |
| 77 | + "breaking": true, |
| 78 | + "release": "major" |
| 79 | + }, |
| 80 | + { |
| 81 | + "revert": true, |
| 82 | + "release": "patch" |
| 83 | + }, |
| 84 | + { |
| 85 | + "type": "feat", |
| 86 | + "release": "minor" |
| 87 | + }, |
| 88 | + { |
| 89 | + "type": "fix", |
| 90 | + "release": "patch" |
| 91 | + }, |
| 92 | + { |
| 93 | + "type": "docs", |
| 94 | + "release": "patch" |
| 95 | + }, |
| 96 | + { |
| 97 | + "type": "test", |
| 98 | + "release": "patch" |
| 99 | + }, |
| 100 | + { |
| 101 | + "type": "deps", |
| 102 | + "release": "patch" |
| 103 | + }, |
| 104 | + { |
| 105 | + "scope": "no-release", |
| 106 | + "release": false |
| 107 | + } |
| 108 | + ] |
| 109 | + } |
| 110 | + ], |
| 111 | + [ |
| 112 | + "@semantic-release/release-notes-generator", |
| 113 | + { |
| 114 | + "preset": "conventionalcommits", |
| 115 | + "presetConfig": { |
| 116 | + "types": [ |
| 117 | + { |
| 118 | + "type": "feat", |
| 119 | + "section": "Features" |
| 120 | + }, |
| 121 | + { |
| 122 | + "type": "fix", |
| 123 | + "section": "Bug Fixes" |
| 124 | + }, |
| 125 | + { |
| 126 | + "type": "chore", |
| 127 | + "section": "Trivial Changes" |
| 128 | + }, |
| 129 | + { |
| 130 | + "type": "docs", |
| 131 | + "section": "Documentation" |
| 132 | + }, |
| 133 | + { |
| 134 | + "type": "deps", |
| 135 | + "section": "Dependencies" |
| 136 | + }, |
| 137 | + { |
| 138 | + "type": "test", |
| 139 | + "section": "Tests" |
| 140 | + } |
| 141 | + ] |
| 142 | + } |
| 143 | + } |
| 144 | + ], |
| 145 | + "@semantic-release/changelog", |
| 146 | + "@semantic-release/npm", |
| 147 | + "@semantic-release/github", |
| 148 | + "@semantic-release/git" |
| 149 | + ] |
| 150 | + }, |
| 151 | + "scripts": { |
| 152 | + "clean": "aegir clean", |
| 153 | + "lint": "aegir lint", |
| 154 | + "build": "aegir build --bundle false", |
| 155 | + "release": "aegir release", |
| 156 | + "test": "aegir test -t browser", |
| 157 | + "test:chrome": "aegir test -t browser", |
| 158 | + "test:chrome-webworker": "aegir test -t webworker", |
| 159 | + "test:firefox": "aegir test -t browser -- --browser firefox", |
| 160 | + "test:firefox-webworker": "aegir test -t webworker -- --browser firefox", |
| 161 | + "dep-check": "aegir dep-check" |
| 162 | + }, |
| 163 | + "dependencies": { |
| 164 | + "blockstore-core": "^4.0.0", |
| 165 | + "interface-blockstore": "^5.0.0", |
| 166 | + "interface-store": "^5.0.0", |
| 167 | + "it-map": "^3.0.1", |
| 168 | + "it-parallel-batch": "^3.0.0", |
| 169 | + "multiformats": "^12.0.1" |
| 170 | + }, |
| 171 | + "devDependencies": { |
| 172 | + "aegir": "^41.1.9", |
| 173 | + "interface-blockstore-tests": "^6.0.0" |
| 174 | + } |
| 175 | +} |
0 commit comments