-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 KB
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
{
"name": "nodejs-fs-explorer-ui-bundle",
"version": "0.1.0",
"description": "File Explorer component for the NodeJS filesystem API, for using with zenfs, memfs, or similar nodejs fs browser implementations",
"keywords": [
"nodejs",
"filesystem",
"fs",
"explorer",
"ui",
"browser",
"zenfs",
"memfs"
],
"author": {
"name": "davidsm10",
"email": "davidsm10@systemli.org"
},
"repository": {
"type": "git",
"url": "https://github.com/davidsm10/nodejs-fs-explorer-ui-bundle"
},
"bugs": "https://github.com/davidsm10/nodejs-fs-explorer-ui-bundle/issues",
"homepage": "https://github.com/davidsm10/nodejs-fs-explorer-ui-bundle",
"license": "LGPL-3.0-or-later",
"main": "dist/nodejs-fs-explorer-ui.js",
"types": "types.d.ts",
"type": "module",
"files": [
"dist",
"types.d.ts"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tsconfig/svelte": "^5.0.5",
"@types/node": "^24.8.0",
"@zenfs/bundle": "1.0.0-date-2025.9.10",
"@zenfs/core": "^2.5.2",
"nodejs-fs-explorer-ui": "^0.1.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.35.5",
"svelte-check": "^4.3.3",
"typescript": "^5.9.3",
"vite": "^7.0.4"
},
"exports": {
".": {
"import": "./dist/nodejs-fs-explorer-ui.js",
"types": "./types.d.ts"
}
}
}