forked from zen-fs/dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@browserfs/fs-dom",
"version": "0.1.11",
"description": "DOM backends for @BrowserFS",
"main": "dist/index.js",
"types": "dist",
"keywords": [
"filesystem",
"node",
"storage"
],
"type": "module",
"homepage": "https://github.com/saoirse-iontach/browser-fs-dom",
"author": "John Vilk <[email protected]>",
"contributors": [
{
"name": "dr-vortex",
"email": "[email protected]",
"url": "https://drvortex.dev"
},
{
"name": "saoirse-iontach",
"url": "https://github.com/saoirse-iontach"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/saoirse-iontach/browser-fs-dom.git"
},
"bugs": {
"url": "https://github.com/saoirse-iontach/browser-fs-dom/issues"
},
"engines": {
"node": ">= 18"
},
"exports": {
"./*": "./dist/*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"scripts": {
"format": "prettier --write src",
"format:check": "prettier --check src",
"lint": "eslint src",
"build": "node scripts/build.mjs",
"build:docs": "typedoc --out docs --name 'BrowserFS DOM' src/index.ts",
"test": "cross-env NODE_ENV=--experimental-vm-modules npx jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"esbuild-plugin-external-global": "^1.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.17.18",
"eslint": "^8.36.0",
"jest": "^29.7.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@browserfs/core": "saoirse-iontach/browser-fs-core#semver:0.1"
}
}