@zenfs/dom 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/license.md CHANGED
@@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
16
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
17
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
18
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.
19
+ SOFTWARE.
package/package.json CHANGED
@@ -1,56 +1,57 @@
1
1
  {
2
- "name": "@zenfs/dom",
3
- "version": "0.1.1",
4
- "description": "DOM backends for ZenFS",
5
- "main": "dist/index.js",
6
- "types": "dist",
7
- "keywords": [
8
- "filesystem",
9
- "node",
10
- "storage"
11
- ],
12
- "type": "module",
13
- "homepage": "https://github.com/zen-fs/dom",
14
- "author": "James P. <jp@drvortex.dev> (https://drvortex.dev)",
15
- "license": "MIT",
16
- "repository": {
17
- "type": "git",
18
- "url": "git+https://github.com/zen-fs/dom.git"
19
- },
20
- "bugs": {
21
- "url": "https://github.com/zen-fs/dom/issues"
22
- },
23
- "engines": {
24
- "node": ">= 18"
25
- },
26
- "exports": {
27
- "./*": "./dist/*"
28
- },
29
- "typesVersions": {
30
- "*": {
31
- "*": [
32
- "./dist/*"
33
- ]
34
- }
35
- },
36
- "scripts": {
37
- "format": "prettier --write src",
38
- "format:check": "prettier --check src",
39
- "lint": "tsc -p tsconfig.json --noEmit && eslint src",
40
- "build": "node scripts/build.mjs",
41
- "build:docs": "typedoc --out docs --name 'ZenFS DOM' src/index.ts",
42
- "prepublishOnly": "npm run build"
43
- },
44
- "devDependencies": {
45
- "@typescript-eslint/eslint-plugin": "^5.55.0",
46
- "@typescript-eslint/parser": "^5.55.0",
47
- "esbuild": "^0.17.18",
48
- "eslint": "^8.36.0",
49
- "prettier": "^2.8.7",
50
- "typedoc": "^0.25.1",
51
- "typescript": "5.2.2"
52
- },
53
- "peerDependencies": {
54
- "@zenfs/core": "^0.4.0"
55
- }
2
+ "name": "@zenfs/dom",
3
+ "version": "0.1.3",
4
+ "description": "DOM backends for ZenFS",
5
+ "main": "dist/index.js",
6
+ "types": "dist",
7
+ "keywords": [
8
+ "filesystem",
9
+ "node",
10
+ "storage"
11
+ ],
12
+ "type": "module",
13
+ "homepage": "https://github.com/zen-fs/dom",
14
+ "author": "James P. <jp@drvortex.dev>",
15
+ "license": "MIT",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/zen-fs/dom.git"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/zen-fs/dom/issues"
22
+ },
23
+ "engines": {
24
+ "node": ">= 18"
25
+ },
26
+ "exports": {
27
+ ".": "./dist/index.js",
28
+ "./*": "./dist/*"
29
+ },
30
+ "typesVersions": {
31
+ "*": {
32
+ "*": [
33
+ "./dist/*"
34
+ ]
35
+ }
36
+ },
37
+ "scripts": {
38
+ "format": "prettier --write .",
39
+ "format:check": "prettier --check .",
40
+ "lint": "tsc -p tsconfig.json --noEmit && eslint src",
41
+ "build": "node scripts/build.mjs",
42
+ "build:docs": "typedoc --out docs --name 'ZenFS DOM' src/index.ts",
43
+ "prepublishOnly": "npm run build"
44
+ },
45
+ "devDependencies": {
46
+ "@typescript-eslint/eslint-plugin": "^5.55.0",
47
+ "@typescript-eslint/parser": "^5.55.0",
48
+ "esbuild": "^0.17.18",
49
+ "eslint": "^8.36.0",
50
+ "prettier": "^3.2.5",
51
+ "typedoc": "^0.25.1",
52
+ "typescript": "5.2.2"
53
+ },
54
+ "peerDependencies": {
55
+ "@zenfs/core": "^0.5.0"
56
+ }
56
57
  }